From 0bf00df07cc0b1d3aa0410cc36ed846a71d5bc73 Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Tue, 23 May 2023 09:27:46 +0100 Subject: [PATCH] Fixed clock cycle and instruction counter overflow --- system/system.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/system.v b/system/system.v index c788d0b..e348fc9 100644 --- a/system/system.v +++ b/system/system.v @@ -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)