diff options
Diffstat (limited to 'rtl/src/instruction_reg.v')
-rw-r--r-- | rtl/src/instruction_reg.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/src/instruction_reg.v b/rtl/src/instruction_reg.v index d2146b4..305789e 100644 --- a/rtl/src/instruction_reg.v +++ b/rtl/src/instruction_reg.v @@ -2,11 +2,11 @@ // Stores current instruction (and pc) until next one gets fetched. module instruction_reg ( - input clk, - input rstn, + input clk, + input rstn, - input we, - input [31:0] pc_in, instr_in, + input we, + input [31:0] pc_in, instr_in, output reg [31:0] pc_buf, instr ); |