File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
sim_models/primitives_mapping/FIFO Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ wire [17:0] fifo2_flags;
107107
108108assign OVERFLOW1 = fifo1_flags[0 ];
109109assign PROG_FULL1 = fifo1_flags[1 ];
110- assign ALMOST_EMPTY1 = fifo1_flags[2 ];
110+ assign ALMOST_FULL1 = fifo1_flags[2 ];
111111assign FULL1 = fifo1_flags[3 ];
112112assign UNDERFLOW1 = fifo1_flags[4 ];
113113assign PROG_EMPTY1 = fifo1_flags[5 ];
@@ -116,7 +116,7 @@ assign EMPTY1 = fifo1_flags[7];
116116
117117assign OVERFLOW2 = fifo2_flags[0 ];
118118assign PROG_FULL2 = fifo2_flags[1 ];
119- assign ALMOST_EMPTY2 = fifo2_flags[2 ];
119+ assign ALMOST_FULL2 = fifo2_flags[2 ];
120120assign FULL2 = fifo2_flags[3 ];
121121assign UNDERFLOW2 = fifo2_flags[4 ];
122122assign PROG_EMPTY2 = fifo2_flags[5 ];
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ wire [17:0] unused_rdataA2;
6262
6363assign OVERFLOW = fifo_flags[0 ];
6464assign PROG_FULL = fifo_flags[1 ];
65- assign ALMOST_EMPTY = fifo_flags[2 ];
65+ assign ALMOST_FULL = fifo_flags[2 ];
6666assign FULL = fifo_flags[3 ];
6767assign UNDERFLOW = fifo_flags[4 ];
6868assign PROG_EMPTY = fifo_flags[5 ];
You can’t perform that action at this time.
0 commit comments