GPR Wrapper in Decode

This commit is contained in:
felsabbagh3
2019-09-09 01:03:13 -04:00
parent ecf81336db
commit bce9bc443c
16 changed files with 4432 additions and 4847 deletions

View File

@@ -83,13 +83,10 @@ module VX_context (
always @(posedge clk) begin
if ((in_is_clone) && state_stall == 0) begin
state_stall <= 10;
// $display("CLONEEE BITCH %d, 1 =? %h = %h -- %d", state_stall, rd1_register[0], to_clone_1, in_is_clone);
end else if (state_stall == 1) begin
// $display("ENDING CLONE, 1 =? %h = %h -- %d", rd1_register[0], to_clone_1, in_is_clone);
state_stall <= 0;
end else if (state_stall > 0) begin
state_stall <= state_stall - 1;
// $display("CLONEEE BITCH %d, 1 =? %h = %h -- %d", state_stall, rd1_register[0], to_clone_1, in_is_clone);
end
end