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
integer instruction_count;
reg [128:0] instruction_count;
always @(new_instruction) begin
instruction_count<=instruction_count+1;
end
@ -153,7 +153,7 @@ always @( ERROR ) begin
end
end
integer cycles;
reg [128:0] cycles;
always @(negedge clock)begin
if(reset==1)