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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user