Fixed clock cycle and instruction counter overflow

This commit is contained in:
(Tim) Efthimis Kritikos 2023-05-23 09:27:46 +01:00
parent 35a5a9ada2
commit 0bf00df07c

View File

@ -94,7 +94,7 @@ end
`ifdef CALCULATE_IPC `ifdef CALCULATE_IPC
integer instruction_count; reg [128:0] instruction_count;
always @(new_instruction) begin always @(new_instruction) begin
instruction_count<=instruction_count+1; instruction_count<=instruction_count+1;
end end
@ -153,7 +153,7 @@ always @( ERROR ) begin
end end
end end
integer cycles; reg [128:0] cycles;
always @(negedge clock)begin always @(negedge clock)begin
if(reset==1) if(reset==1)