Fixed incorrect disassembly mnemonic.
This commit is contained in:
parent
39338c5a73
commit
982ac20147
2
dis.c
2
dis.c
|
@ -443,7 +443,7 @@ static const char *msp_op_name(msp430_op_t op)
|
||||||
} ops[] = {
|
} ops[] = {
|
||||||
/* Single operand */
|
/* Single operand */
|
||||||
{MSP430_OP_RRC, "RRC"},
|
{MSP430_OP_RRC, "RRC"},
|
||||||
{MSP430_OP_RRC, "SWPB"},
|
{MSP430_OP_SWPB, "SWPB"},
|
||||||
{MSP430_OP_RRA, "RRA"},
|
{MSP430_OP_RRA, "RRA"},
|
||||||
{MSP430_OP_SXT, "SXT"},
|
{MSP430_OP_SXT, "SXT"},
|
||||||
{MSP430_OP_PUSH, "PUSH"},
|
{MSP430_OP_PUSH, "PUSH"},
|
||||||
|
|
Loading…
Reference in New Issue