aboutsummaryrefslogtreecommitdiff
path: root/src/instruction_reg.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/instruction_reg.v')
-rw-r--r--src/instruction_reg.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/instruction_reg.v b/src/instruction_reg.v
index f3f456e..3c81cf6 100644
--- a/src/instruction_reg.v
+++ b/src/instruction_reg.v
@@ -1,5 +1,8 @@
module instruction_reg (
- input clk, rstn, we,
+ input clk,
+ input rstn,
+
+ input we,
input [31:0] pc_in, instr_in,
output reg [31:0] pc_buf, instr
);