mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-09 21:14:57 -07:00
prevent simulation from printing all writes to regfile
This commit is contained in:
parent
34dc20f115
commit
cc4101c1f8
|
@ -546,7 +546,7 @@ always @(posedge clk) begin: pipeline_update
|
||||||
// TODO: should I write if s_wb_stall=1?
|
// TODO: should I write if s_wb_stall=1?
|
||||||
if (r_wb_rd != 0 && s_wb_write && r_wb_valid) begin
|
if (r_wb_rd != 0 && s_wb_write && r_wb_valid) begin
|
||||||
regfile[r_wb_rd] <= s_wb_data;
|
regfile[r_wb_rd] <= s_wb_data;
|
||||||
$display("%0t:\tPC=0x%h\tx%02d=0x%h", $time, r_id_pc, r_wb_rd, s_wb_data);
|
// $display("%0t:\tPC=0x%h\tx%02d=0x%h", $time, r_id_pc, r_wb_rd, s_wb_data);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user