Fixed clock cycle and instruction counter overflow
This commit is contained in:
parent
35a5a9ada2
commit
0bf00df07c
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user