Skip to content

Commit 256da84

Browse files
authored
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);
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;

sequential-logic/memory/lifo_synchronous/source/stack_ptr_control.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module stack_ptr_control (
1414
if (rst) begin
1515
wrt_ptr <= 4'b0000;
1616
rd_ptr <= 4'b0000;
17-
// BOTTOM - PUSH
17+
// BOTTOM - PUSH
1818
end else if ((wrt_ptr == 4'b0000) & (w_next)) begin
1919
wrt_ptr <= wrt_ptr + 1;
2020
// BOTTOM - POP
@@ -24,7 +24,7 @@ module stack_ptr_control (
2424
end else if (w_next) begin
2525
wrt_ptr <= wrt_ptr + 1;
2626
rd_ptr <= rd_ptr + 1;
27-
// POP
27+
// POP
2828
end else if (r_next) begin
2929
wrt_ptr <= wrt_ptr - 1;
3030
rd_ptr <= rd_ptr - 1;

sequential-logic/memory/single_port_ram_synchronous/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ behavioral model,
6363
if (we) begin
6464
mem[addr] <= data_in;
6565
data_out <= data_in;
66-
// READ
66+
// READ
6767
end else begin
6868
data_out <= mem[addr];
6969
end

sequential-logic/memory/single_port_ram_synchronous/single_port_ram_synchronous.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module single_port_ram_synchronous_behavioral(
2121
if (we) begin
2222
mem[addr] <= data_in;
2323
data_out <= data_in;
24-
// READ
24+
// READ
2525
end else begin
2626
data_out <= mem[addr];
2727
end

0 commit comments

Comments
 (0)