diff options
author | Oxore <oxore@protonmail.com> | 2023-08-12 22:20:59 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-08-12 22:42:06 +0300 |
commit | da1610c19385cb80ebf1af56382f1f3689e2716d (patch) | |
tree | 7fcf407f7cbd1112685b0af9b3ba0634a338b74b | |
parent | 3d92d620d11b50d8e54ebe1be1bc90416d723475 (diff) |
Add ASR, LOL, I forgot it
-rw-r--r-- | main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 }, |