diff options
author | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-21 07:28:34 +0200 |
---|---|---|
committer | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2024-05-21 07:28:34 +0200 |
commit | 9f1ab1f834c58c231617f3be12f16793061d4630 (patch) | |
tree | dfb5040d4568010ecc765dee61f1ade9a4d7fc02 /include | |
parent | 5a549e61af1df0c4016f00af830120d21a88a0e7 (diff) | |
download | riscv_cpu-9f1ab1f834c58c231617f3be12f16793061d4630.tar.gz riscv_cpu-9f1ab1f834c58c231617f3be12f16793061d4630.zip |
cleaned up graphics
Diffstat (limited to 'include')
-rw-r--r-- | include/consts.vh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/consts.vh b/include/consts.vh index e0f6e5f..75ee0bf 100644 --- a/include/consts.vh +++ b/include/consts.vh @@ -1,16 +1,16 @@ parameter ALU_A_SRC_PC = 3'b000; parameter ALU_A_SRC_PC_BUF = 3'b001; -parameter ALU_A_SRC_RD1_BUF = 3'b010; -parameter ALU_A_SRC_RD1 = 3'b011; +parameter ALU_A_SRC_RD1 = 3'b010; +parameter ALU_A_SRC_RD1_BUF = 3'b011; parameter ALU_A_SRC_0 = 3'b100; parameter ALU_B_SRC_RD2_BUF = 2'b00; parameter ALU_B_SRC_IMM = 2'b01; parameter ALU_B_SRC_4 = 2'b10; -parameter RESULT_SRC_ALU_RESULT_BUF = 2'b00; -parameter RESULT_SRC_DATA_BUF = 2'b01; -parameter RESULT_SRC_ALU_RESULT = 2'b10; +parameter RESULT_SRC_ALU_RESULT = 2'b00; +parameter RESULT_SRC_ALU_RESULT_BUF = 2'b01; +parameter RESULT_SRC_DATA_BUF = 2'b10; parameter MEM_ADDR_SRC_PC = 1'b0; parameter MEM_ADDR_SRC_RESULT = 1'b1; |