diff options
author | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-08 10:55:45 +0200 |
---|---|---|
committer | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-08 10:55:45 +0200 |
commit | aa005bc8b667668eb43c0ae62e00aefd1c3c1af5 (patch) | |
tree | a491b20a750cf0dac413aa10deb2ead3b6266fc3 /src/alu_op_decode.v | |
parent | 80fee7a2db703f029989c40e823c2ccdeb078fca (diff) | |
download | riscv_cpu-aa005bc8b667668eb43c0ae62e00aefd1c3c1af5.tar.gz riscv_cpu-aa005bc8b667668eb43c0ae62e00aefd1c3c1af5.zip |
assemble simple rom
Diffstat (limited to 'src/alu_op_decode.v')
-rw-r--r-- | src/alu_op_decode.v | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/alu_op_decode.v b/src/alu_op_decode.v index 64bb94b..8e801c8 100644 --- a/src/alu_op_decode.v +++ b/src/alu_op_decode.v @@ -1,5 +1,6 @@ module alu_op_decode ( input [6:0] opcode, + input [1:0] alu_ctrl, input [2:0] funct3, input [6:0] funct7, output reg [3:0] alu_op |