mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-01 18:32:32 +08:00
* rl78-decode.opc (rl78_decode_opcode): Add NOT1.
* rl78-decode.c: Regenerate. * config/rl78-parse.y (NOT1): Add.
This commit is contained in:
@ -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>
|
2012-01-23 Roland McGrath <mcgrathr@google.com>
|
||||||
|
|
||||||
* configure.tgt (i386-*-nacl*): Match it.
|
* configure.tgt (i386-*-nacl*): Match it.
|
||||||
|
@ -166,7 +166,7 @@ reg_xbc (int reg)
|
|||||||
%token HALT
|
%token HALT
|
||||||
%token INC INCW
|
%token INC INCW
|
||||||
%token MACH MACHU MOV MOV1 MOVS MOVW MULH MULHU MULU
|
%token MACH MACHU MOV MOV1 MOVS MOVW MULH MULHU MULU
|
||||||
%token NOP
|
%token NOP NOT1
|
||||||
%token ONEB ONEW OR OR1
|
%token ONEB ONEW OR OR1
|
||||||
%token POP PUSH
|
%token POP PUSH
|
||||||
%token RET RETI RETB ROL ROLC ROLWC ROR RORC
|
%token RET RETI RETB ROL ROLC ROLWC ROR RORC
|
||||||
@ -884,6 +884,11 @@ statement :
|
|||||||
| NOP
|
| NOP
|
||||||
{ B1 (0x00); }
|
{ B1 (0x00); }
|
||||||
|
|
||||||
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
| NOT1 CY
|
||||||
|
{ B2 (0x71, 0xc0); }
|
||||||
|
|
||||||
/* ---------------------------------------------------------------------- */
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|
||||||
| POP regw
|
| POP regw
|
||||||
@ -1291,6 +1296,7 @@ token_table[] =
|
|||||||
OPC(MULHU),
|
OPC(MULHU),
|
||||||
OPC(MULU),
|
OPC(MULU),
|
||||||
OPC(NOP),
|
OPC(NOP),
|
||||||
|
OPC(NOT1),
|
||||||
OPC(ONEB),
|
OPC(ONEB),
|
||||||
OPC(ONEW),
|
OPC(ONEW),
|
||||||
OPC(OR),
|
OPC(OR),
|
||||||
|
@ -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>
|
2012-01-17 James Murray <jsm@jsm-net.demon.co.uk>
|
||||||
|
|
||||||
PR binutils/10173
|
PR binutils/10173
|
||||||
|
@ -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 */
|
/** 1110 0101 oneb %e0%!0 */
|
||||||
ID(mov); DM(None, IMMU(2)); SC(1);
|
ID(mov); DM(None, IMMU(2)); SC(1);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user