diff options
author | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-31 13:45:56 -0400 |
---|---|---|
committer | Siddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com> | 2025-03-31 13:45:56 -0400 |
commit | 598da346f59503442ba0b4badfd9ac8b58af4a89 (patch) | |
tree | 6f850061b9e89a93c30c8a6d7a699ffdc291e2ab /inc/instr.h | |
parent | 44cb9d396b909c84ef7ad3338e0a12cfcc082748 (diff) |
MEM WB stage
Diffstat (limited to 'inc/instr.h')
-rw-r--r-- | inc/instr.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/inc/instr.h b/inc/instr.h index 7fbb42b..d17613d 100644 --- a/inc/instr.h +++ b/inc/instr.h @@ -45,6 +45,13 @@ enum Mnemonic { NOP, }; +enum Type { + R, + I, + J, + INV +}; + namespace instr { // clang-format off |