Commit a0c2ed8e authored by Tristan Gingold's avatar Tristan Gingold

tb/debug/main.sv: remove unused dm_ready port

parent 7932c27c
......@@ -42,7 +42,6 @@ module main;
wire [3:0] dm_data_select;
wire dm_write;
reg dm_valid_l = 1;
reg dm_ready;
reg dbg_force = 1;
wire dbg_enabled;
......@@ -132,8 +131,6 @@ module main;
always@(posedge clk)
begin
dm_ready <= 1'b1; // $dist_uniform(seed, 0, 100 ) <= 50;
dm_data_l <= mem[(dm_addr/4) % mem_size];
end
......@@ -161,7 +158,6 @@ module main;
.dm_load_o(),
.dm_store_done_i(1'b1),
.dm_load_done_i(1'b1),
.dm_ready_i(dm_ready),
// Debug
.dbg_force_i(dbg_force),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment