diff options
author | bd <bdunaisky@umass.edu> | 2025-04-01 02:12:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 02:12:15 +0000 |
commit | 6f536bd1bd1abab307c79d688c993e930cf7c250 (patch) | |
tree | 6132673f5aa85f2488d6f7de77fb33538b7320d3 /inc/instr.h | |
parent | 44cb9d396b909c84ef7ad3338e0a12cfcc082748 (diff) | |
parent | 574212dafcf1c4bdb7d5e6aaa577b74345988d67 (diff) |
Merge pull request #45 from bdunahu/dev-sid
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 |