From: Joshua Wise Date: Mon, 5 Jan 2009 09:18:07 +0000 (-0500) Subject: Add a jump test X-Git-Url: http://git.joshuawise.com/firearm.git/commitdiff_plain/acae28be768b6bcdae19c384826477548d6e72b1 Add a jump test --- diff --git a/ram.comments.hex b/ram.comments.hex index c2c42a3..bffc93b 100644 Binary files a/ram.comments.hex and b/ram.comments.hex differ diff --git a/ram.hex b/ram.hex index 03c562d..9f19cbb 100644 Binary files a/ram.hex and b/ram.hex differ diff --git a/system.v b/system.v index 736e6f2..8ab3e23 100644 --- a/system.v +++ b/system.v @@ -124,6 +124,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); + $display("%3d: EXEC: Stall: %d, Bubble: %d, Reg: %d, [%08x -> %d], Jmp: %d [%08x]", clockno, stall_cause_execute, execute_out_bubble, execute_out_write_reg, execute_out_write_data, execute_out_write_num, jmp, jmppc); end endmodule