From 6bf7fee64bc96c73c9604d3e45ff51e946257abe Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sun, 13 Oct 2024 20:01:37 -0700 Subject: [PATCH] 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. --- hw/super6502_fpga/src/rtl/super_6502_fpga.sv | 2 +- hw/super6502_fpga/super6502_fpga.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/super6502_fpga/src/rtl/super_6502_fpga.sv b/hw/super6502_fpga/src/rtl/super_6502_fpga.sv index 9220ebd..908bd4e 100644 --- a/hw/super6502_fpga/src/rtl/super_6502_fpga.sv +++ b/hw/super6502_fpga/src/rtl/super_6502_fpga.sv @@ -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), diff --git a/hw/super6502_fpga/super6502_fpga.xml b/hw/super6502_fpga/super6502_fpga.xml index 730db5d..4d2ba84 100644 --- a/hw/super6502_fpga/super6502_fpga.xml +++ b/hw/super6502_fpga/super6502_fpga.xml @@ -1,5 +1,5 @@ - +