diff --git a/dependencies/rtl/top.v b/dependencies/rtl/top.v index 8757ea0..b233f7e 100755 --- a/dependencies/rtl/top.v +++ b/dependencies/rtl/top.v @@ -17,12 +17,7 @@ module top( output debug_commit, output [63:0] debug_pc, output [4:0 ] debug_rf_wnum, - output [63:0] debug_rf_wdata, - // sram - output [7:0] debug_sram_wen, - output [31:0] debug_sram_waddr, - output [63:0] debug_sram_wdata - + output [63:0] debug_rf_wdata ); PuaCpu core( @@ -49,11 +44,7 @@ PuaCpu core( .io_debug_pc (debug_pc), .io_debug_commit (debug_commit), .io_debug_rf_wnum (debug_rf_wnum), - .io_debug_rf_wdata (debug_rf_wdata), - // sram - .io_debug_sram_wen (debug_sram_wen), - .io_debug_sram_waddr (debug_sram_waddr), - .io_debug_sram_wdata (debug_sram_wdata) + .io_debug_rf_wdata (debug_rf_wdata) ); endmodule diff --git a/src/dut/top.rs b/src/dut/top.rs index e9d6da1..b003357 100644 --- a/src/dut/top.rs +++ b/src/dut/top.rs @@ -37,11 +37,4 @@ pub struct Top { pub debug_rf_wnum: [bool; 5], #[port(output)] pub debug_rf_wdata: [bool; 64], - // trace memory interface - #[port(output)] - pub debug_sram_wen: [bool; 8], - #[port(output)] - pub debug_sram_waddr: [bool; 32], - #[port(output)] - pub debug_sram_wdata: [bool; 64], }