diff options
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/moxie-opc.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index d64d138..76fdf19 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2014-12-12 Anthony Green <green@moxielogic.com> + + * moxie-opc.c: Define zex instructions. + 2014-12-06 Eric Botcazou <ebotcazou@adacore.com> * configure.ac: Add Visium support. diff --git a/opcodes/moxie-opc.c b/opcodes/moxie-opc.c index ffc5d19..ea3be80 100644 --- a/opcodes/moxie-opc.c +++ b/opcodes/moxie-opc.c @@ -70,8 +70,8 @@ const moxie_opc_info_t moxie_form1_opc_info[128] = { 0x0f, MOXIE_F1_NARG, "nop" }, { 0x10, MOXIE_F1_AB, "sex.b" }, { 0x11, MOXIE_F1_AB, "sex.s" }, - { 0x12, MOXIE_BAD, "bad" }, - { 0x13, MOXIE_BAD, "bad" }, + { 0x12, MOXIE_F1_AB, "zex.b" }, + { 0x13, MOXIE_F1_AB, "zex.s" }, { 0x14, MOXIE_BAD, "bad" }, { 0x15, MOXIE_BAD, "bad" }, { 0x16, MOXIE_BAD, "bad" }, |