summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2024-03-18 22:57:35 +0300
committerOxore <oxore@protonmail.com>2024-03-18 22:57:35 +0300
commitffb7028ef9b492903ed88c76ef4305f735c1420b (patch)
tree8e4e8e388af14f20295c5b393c638c4f8d296de0
parent06a850cc15999ec2839342ef79d0694a72628670 (diff)
Add EOR instructionHEADmaster
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index cb63eb4..faef6df 100644
--- a/main.c
+++ b/main.c
@@ -251,6 +251,7 @@ enum mnemonic {
MN_DBVS,
MN_DIVU,
MN_DIVS,
+ MN_EOR,
MN_EORI,
MN_EXG,
MN_EXT,
@@ -620,6 +621,7 @@ const struct mnemonic_meta {
{ "dbvs", ARGS_COUNT_2 },
{ "divu", ARGS_COUNT_2 },
{ "divs", ARGS_COUNT_2 },
+ { "eor", ARGS_COUNT_2 },
{ "eori", ARGS_COUNT_2 },
{ "exg", ARGS_COUNT_2 },
{ "ext", ARGS_COUNT_1 },