From 31c981bc36b1b62cf8952f3eb9125f500f5bd7a8 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Wed, 2 Apr 2014 20:04:23 -0400 Subject: [PATCH] Add new sign-extension instructions to moxie port --- opcodes/ChangeLog | 5 +++++ opcodes/moxie-opc.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 89de66ff99..39e9ddbd55 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2014-04-02 Anthony Green + + * moxie-opc.c (moxie_form1_opc_info): Add sign-extension + instructions, sex.b and sex.s. + 2014-03-26 Jiong Wang * aarch64-dis.c (aarch64_ext_ldst_elemlist): Check H/S undefined diff --git a/opcodes/moxie-opc.c b/opcodes/moxie-opc.c index 50fb2d8db2..ffc5d19e97 100644 --- a/opcodes/moxie-opc.c +++ b/opcodes/moxie-opc.c @@ -68,8 +68,8 @@ const moxie_opc_info_t moxie_form1_opc_info[128] = { 0x0d, MOXIE_F1_AiB4, "sto.l" }, { 0x0e, MOXIE_F1_AB, "cmp" }, { 0x0f, MOXIE_F1_NARG, "nop" }, - { 0x10, MOXIE_BAD, "bad" }, - { 0x11, MOXIE_BAD, "bad" }, + { 0x10, MOXIE_F1_AB, "sex.b" }, + { 0x11, MOXIE_F1_AB, "sex.s" }, { 0x12, MOXIE_BAD, "bad" }, { 0x13, MOXIE_BAD, "bad" }, { 0x14, MOXIE_BAD, "bad" }, -- 2.34.1