From: Joshua Wise Date: Tue, 6 Jan 2009 04:57:24 +0000 (-0500) Subject: system.v: Silly typo fix -- why didn't Verilator warn me about that????? X-Git-Url: http://git.joshuawise.com/firearm.git/commitdiff_plain/f5c8bf8ae6b59b66676c2f0bf6e2041fe56d61fc?hp=2393422aab14e1b2172b4e52b9117272cc13c72e system.v: Silly typo fix -- why didn't Verilator warn me about that????? --- diff --git a/system.v b/system.v index 6fd0b8b..a8a9ac4 100644 --- a/system.v +++ b/system.v @@ -118,7 +118,7 @@ module System(input clk); .write_reg(execute_out_write_reg), .write_num(execute_out_write_num), .write_data(execute_out_write_data), .jmp(jmp), .jmppc(jmppc), - .outpc(pc_out_execute), .insn(insn_out_execute)); + .outpc(pc_out_execute), .outinsn(insn_out_execute)); assign execute_out_backflush = jmp; reg [31:0] clockno = 0;