Increase TCP count to 2

After removing all the inferred latches, we have enough space to have 2
TCP streams instead of just 1. Also we have way more timing slack.

Lesson learned, inferred latches are *really* bad and you should remove
them first before anything else.
This commit is contained in:
Byron Lathi
2024-10-13 20:01:37 -07:00
parent 5e8d91be53
commit 6bf7fee64b
2 changed files with 2 additions and 2 deletions

View File

@@ -526,7 +526,7 @@ logic network_processor_reset;
always_ff @(posedge i_sysclk) network_processor_reset <= ~master_resetn;
network_processor #(
.NUM_TCP(1)
.NUM_TCP(2)
) u_network_processor (
.i_clk (i_sysclk),
.i_rst (network_processor_reset),