From 1b4fecda797a804b5011132c3f9324ce0bda4585 Mon Sep 17 00:00:00 2001 From: Joshua Wise Date: Wed, 31 Dec 2008 01:26:42 -0500 Subject: [PATCH 1/1] system.v: Add debug output for the execute stage. --- system.v | 1 + 1 file changed, 1 insertion(+) diff --git a/system.v b/system.v index a4d13a4..685d5bd 100644 --- a/system.v +++ b/system.v @@ -120,5 +120,6 @@ module System(input clk); $display("%3d: FETCH: Bubble: %d, Instruction: %08x, PC: %08x", clockno, bubble_out_fetch, insn_out_fetch, pc_out_fetch); $display("%3d: ISSUE: Stall: %d, Bubble: %d, Instruction: %08x, PC: %08x", clockno, stall_cause_issue, bubble_out_issue, insn_out_issue, pc_out_issue); $display("%3d: DECODE: op1 %08x, op2 %08x, op3 %08x, carry %d", clockno, decode_out_op0, decode_out_op1, decode_out_op2, decode_out_carry); + $display("%3d: EXEC: Stall: %d, Bubble: %d, Output: %d, [%08x -> %d]", clockno, stall_cause_execute, execute_out_bubble, execute_out_write_reg, execute_out_write_data, execute_out_write_num); end endmodule -- 2.39.2