diff options
author | Anthony Green <green@moxielogic.com> | 2014-12-12 08:43:49 -0500 |
---|---|---|
committer | Anthony Green <green@moxielogic.com> | 2014-12-12 08:45:25 -0500 |
commit | 26047f76c056cfe04e917a249beed66d046b7eb6 (patch) | |
tree | 01c481dffc9fb53add261a61d6cd50724a5b9062 /opcodes | |
parent | c322dea4027dd82a7727154b3eb33438db2859f7 (diff) | |
download | gdb-26047f76c056cfe04e917a249beed66d046b7eb6.zip gdb-26047f76c056cfe04e917a249beed66d046b7eb6.tar.gz gdb-26047f76c056cfe04e917a249beed66d046b7eb6.tar.bz2 |
Add zex instructions for moxie port
Diffstat (limited to 'opcodes')
-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" }, |