diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-04-22 15:23:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-22 15:23:50 -0400 |
commit | 3d0133c2f793e82d7519d8e2c5023114cd0f0eab (patch) | |
tree | b262ededf7e993090d7a860b76ca528b5651c3c6 /inc/instr.h | |
parent | 1250359dfcbcad18c0a1078290f95479aa23e26a (diff) | |
parent | 86a6253a2fb2d016a63e57d6a5e5461df87668e5 (diff) |
Merge pull request #67 from bdunahu/bdunahu
add RET instruction, JAL ob1 error (full subroutine support), condition codes for everything but shifts
Diffstat (limited to 'inc/instr.h')
-rw-r--r-- | inc/instr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/instr.h b/inc/instr.h index b5b782a..62af09a 100644 --- a/inc/instr.h +++ b/inc/instr.h @@ -58,6 +58,7 @@ enum Mnemonic { BOF, PUSH, POP, + RET, NOP, }; |