summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-08-12 22:20:59 +0300
committerOxore <oxore@protonmail.com>2023-08-12 22:42:06 +0300
commitda1610c19385cb80ebf1af56382f1f3689e2716d (patch)
tree7fcf407f7cbd1112685b0af9b3ba0634a338b74b
parent3d92d620d11b50d8e54ebe1be1bc90416d723475 (diff)
Add ASR, LOL, I forgot it
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index e6d13f4..beeb1eb 100644
--- a/main.c
+++ b/main.c
@@ -183,6 +183,7 @@ enum mnemonic {
MN_AND,
MN_ANDI,
MN_ASL,
+ MN_ASR,
MN_BRA,
MN_BSR,
MN_BCC,
@@ -538,6 +539,7 @@ const struct mnemonic_meta {
{ "and", ARGS_COUNT_2 },
{ "andi", ARGS_COUNT_2 },
{ "asl", ARGS_COUNT_1_2 },
+ { "asr", ARGS_COUNT_1_2 },
{ "bra", ARGS_COUNT_1 },
{ "bsr", ARGS_COUNT_1 },
{ "bcc", ARGS_COUNT_1 },