Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 256da84

Browse files
Merge pull request #299 from JeffDeCola/develop
develop
2 parents e5e61ea + 80f1d45 commit 256da84

File tree

13 files changed

+9
-17
lines changed

13 files changed

+9
-17
lines changed

‎README.md‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,10 +332,6 @@ Where the testbench structure is,
332332

333333
_A synchronous lifo using dual-port synchronous RAM._
334334

335-
* [lifo_asynchronous](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/memory/lifo_asynchronous)
336-
337-
_An asynchronous lifo using dual-port asynchronous RAM._
338-
339335
* REGISTERS
340336

341337
* [jeff_74x377](https://github.com/JeffDeCola/my-verilog-examples/tree/master/sequential-logic/registers/jeff_74x377)

‎basic-code/sequential-logic/d_flip_flop_pos_edge_sync_en/README.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ The output of the test,
133133
```text
134134
TEST START --------------------------------
135135
136-
137136
| TIME(ns) | EN | D | Q |
138137
---------------------------
139138
1 INIT | 15 | 1 | 0 | 0 |

‎basic-code/sequential-logic/d_flip_flop_pos_edge_sync_en/d_flip_flop_pos_edge_sync_en_tb.v‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ module D_FLIP_FLOP_POS_EDGE_SYNC_EN_TB ();
5858
$display();
5959
$display("TEST START --------------------------------");
6060
$display();
61-
$display(" ");
6261
$display(" | TIME(ns) | EN | D | Q |");
6362
$display(" ---------------------------");
6463
// $monitor("%4d %10s | %8d | %d | %1d | %1d |", VECTORCOUNT, COMMENT, $time, EN, D, Q_beh);

‎basic-code/sequential-logic/jk_flip_flop_pos_edge_sync_clear/README.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ The output of the test,
149149
```text
150150
TEST START --------------------------------
151151
152-
153152
| TIME(ns) | CLRBAR | J | K | Q |
154153
-----------------------------------
155154
1 INIT | 22 | 1 | 0 | 0 | x |

‎basic-code/sequential-logic/jk_flip_flop_pos_edge_sync_clear/jk_flip_flop_pos_edge_sync_clear_tb.v‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ module JK_FLIP_FLOP_POS_EDGE_SYNC_CLEAR_TB ();
5858
$display();
5959
$display("TEST START --------------------------------");
6060
$display();
61-
$display(" ");
6261
$display(" | TIME(ns) | CLRBAR | J | K | Q |");
6362
$display(" -----------------------------------");
6463
// $monitor("%4d %10s | %8d | %1d | %1d | %1d | %1d |", VECTORCOUNT, COMMENT, $time, CLRBAR, J, K, Q_beh);
1.34 KB
Loading[フレーム]

‎sequential-logic/memory/dual_port_ram_asynchronous/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ behavioral model,
6767
if (we_A) begin
6868
mem[addr_A] <= data_in_A;
6969
data_out_A <= data_in_A;
70-
// READ
70+
// READ
7171
end else begin
7272
data_out_A <= mem[addr_A];
7373
end

‎sequential-logic/memory/dual_port_ram_asynchronous/dual_port_ram_asynchronous.v‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module dual_port_ram_asynchronous_behavioral(
2929
if (we_A) begin
3030
mem[addr_A] <= data_in_A;
3131
data_out_A <= data_in_A;
32-
// READ
32+
// READ
3333
end else begin
3434
data_out_A <= mem[addr_A];
3535
end

‎sequential-logic/memory/dual_port_ram_synchronous/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ behavioral model,
6565
if (we_A) begin
6666
mem[addr_A] <= data_in_A;
6767
data_out_A <= data_in_A;
68-
// READ
68+
// READ
6969
end else begin
7070
data_out_A <= mem[addr_A];
7171
end

‎sequential-logic/memory/lifo_synchronous/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ would take up more real estate than it's worth.
116116
if (rst) begin
117117
wrt_ptr <= 4'b0000;
118118
rd_ptr <= 4'b0000;
119-
// BOTTOM - PUSH
119+
// BOTTOM - PUSH
120120
end else if ((wrt_ptr == 4'b0000) & (w_next)) begin
121121
wrt_ptr <= wrt_ptr + 1;
122122
// BOTTOM - POP
@@ -126,7 +126,7 @@ would take up more real estate than it's worth.
126126
end else if (w_next) begin
127127
wrt_ptr <= wrt_ptr + 1;
128128
rd_ptr <= rd_ptr + 1;
129-
// POP
129+
// POP
130130
end else if (r_next) begin
131131
wrt_ptr <= wrt_ptr - 1;
132132
rd_ptr <= rd_ptr - 1;

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /