Commit 3bb403fb authored by Tristan Gingold's avatar Tristan Gingold

tb/cpu: update (remove dm_ready).

parent 5c7e906c
......@@ -42,7 +42,6 @@ module main;
wire [3:0] dm_data_select;
wire dm_write;
reg dm_valid_l = 1;
reg dm_ready;
localparam int mem_size = 16384;
......@@ -93,8 +92,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
......@@ -136,7 +133,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(1'b0),
......
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