diff options
author | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-23 07:04:37 +0200 |
---|---|---|
committer | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-23 07:04:37 +0200 |
commit | c6e342f93d1a7fe92d2a7e1b4e488f328e1f4469 (patch) | |
tree | a000085f4ce8d6dec3e90ecc230642eeb77d960f /rtl/src/result_mux.v | |
parent | ee94c97e4f8208d0c7404887cda16d00f67c6f1f (diff) | |
download | riscv_cpu-c6e342f93d1a7fe92d2a7e1b4e488f328e1f4469.tar.gz riscv_cpu-c6e342f93d1a7fe92d2a7e1b4e488f328e1f4469.zip |
align
Diffstat (limited to 'rtl/src/result_mux.v')
-rw-r--r-- | rtl/src/result_mux.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/src/result_mux.v b/rtl/src/result_mux.v index 5cbacb0..c2e6636 100644 --- a/rtl/src/result_mux.v +++ b/rtl/src/result_mux.v @@ -2,11 +2,11 @@ // Selects source for result. module result_mux ( - input [31:0] src_alu_result, - input [31:0] src_alu_result_buf, - input [31:0] src_data_buf, + input [31:0] src_alu_result, + input [31:0] src_alu_result_buf, + input [31:0] src_data_buf, - input [1:0] result_src, + input [1:0] result_src, output reg [31:0] result ); |