aboutsummaryrefslogtreecommitdiff
path: root/minias.h
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-10 15:10:47 +1300
committerAndrew Chambers <[email protected]>2021-10-10 15:10:47 +1300
commit54da6cf3b5a2ee14705857bb988af67378d4be2c (patch)
tree9448e6599416f62cd5d1d207795858af34bfc8a2 /minias.h
parent0c15252bb0ca5a1f2f38ad2bd33c025d79590716 (diff)
Implement shift instructions.
Diffstat (limited to 'minias.h')
-rw-r--r--minias.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/minias.h b/minias.h
index 7c0036d..9becc49 100644
--- a/minias.h
+++ b/minias.h
@@ -73,6 +73,10 @@ typedef enum {
ASM_MOVSX,
ASM_MOVZX,
ASM_OR,
+ ASM_SAL,
+ ASM_SAR,
+ ASM_SHL,
+ ASM_SHR,
ASM_SUB,
ASM_XCHG,
ASM_XOR,