aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/rl78-parse.y8
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/rl78-decode.opc5
4 files changed, 21 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 8e4c127..d5de4c5 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2012-01-24 DJ Delorie <dj@redhat.com>
+
+ * config/rl78-parse.y (NOT1): Add.
+
2012-01-23 Roland McGrath <mcgrathr@google.com>
* configure.tgt (i386-*-nacl*): Match it.
diff --git a/gas/config/rl78-parse.y b/gas/config/rl78-parse.y
index d5f2ec9..b487312 100644
--- a/gas/config/rl78-parse.y
+++ b/gas/config/rl78-parse.y
@@ -166,7 +166,7 @@ reg_xbc (int reg)
%token HALT
%token INC INCW
%token MACH MACHU MOV MOV1 MOVS MOVW MULH MULHU MULU
-%token NOP
+%token NOP NOT1
%token ONEB ONEW OR OR1
%token POP PUSH
%token RET RETI RETB ROL ROLC ROLWC ROR RORC
@@ -886,6 +886,11 @@ statement :
/* ---------------------------------------------------------------------- */
+ | NOT1 CY
+ { B2 (0x71, 0xc0); }
+
+/* ---------------------------------------------------------------------- */
+
| POP regw
{ B1 (0xc0); F ($2, 5, 2); }
@@ -1291,6 +1296,7 @@ token_table[] =
OPC(MULHU),
OPC(MULU),
OPC(NOP),
+ OPC(NOT1),
OPC(ONEB),
OPC(ONEW),
OPC(OR),
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index e3a35b6..adee9ce 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2012-01-24 DJ Delorie <dj@redhat.com>
+
+ * rl78-decode.opc (rl78_decode_opcode): Add NOT1.
+ * rl78-decode.c: Regenerate.
+
2012-01-17 James Murray <jsm@jsm-net.demon.co.uk>
PR binutils/10173
diff --git a/opcodes/rl78-decode.opc b/opcodes/rl78-decode.opc
index c5cdf29..4af2bf3 100644
--- a/opcodes/rl78-decode.opc
+++ b/opcodes/rl78-decode.opc
@@ -888,6 +888,11 @@ rl78_decode_opcode (unsigned long pc AU,
/*----------------------------------------------------------------------*/
+/** 0111 0001 1100 0000 not1 cy */
+ ID(xor); DCY(); SC(1);
+
+/*----------------------------------------------------------------------*/
+
/** 1110 0101 oneb %e0%!0 */
ID(mov); DM(None, IMMU(2)); SC(1);