* mn10200-opc.c (mn10200_opcodes): Fix operands for "movb dm,(an)".

Yoshihiro Adachi sez the manual was wrong for this insn.
This commit is contained in:
Jeff Law 1996-12-11 16:29:02 +00:00
parent e14af8fc41
commit 532700fc31
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Dec 11 09:23:46 1996 Jeffrey A Law (law@cygnus.com)
* mn10200-opc.c (mn10200_opcodes): Fix operands for "movb dm,(an)".
Tue Dec 10 12:08:05 1996 Jeffrey A Law (law@cygnus.com)
* mn10200-opc.c (mn10200_opcodes): "mov imm8,d0" is a format 2

View File

@ -207,7 +207,7 @@ const struct mn10200_opcode mn10200_opcodes[] = {
{ "movb", 0xf4a00000, 0xfff00000, FMT_7, {MEM2(IMM24,AN1), DM0}},
{ "movb", 0xf040, 0xffc0, FMT_4, {MEM2(DI, AN1), DM0}},
{ "movb", 0xf4c40000, 0xfffc0000, FMT_7, {MEM(IMM24_MEM), DN0}},
{ "movb", 0x10, 0xf0, FMT_1, {DM1, MEM(AN0)}},
{ "movb", 0x10, 0xf0, FMT_1, {DM0, MEM(AN1)}},
{ "movb", 0xf51000, 0xfff000, FMT_5, {DM0, MEM2(SD8, AN1)}},
{ "movb", 0xf7900000, 0xfff00000, FMT_6, {DM0, MEM2(SD16, AN1)}},
{ "movb", 0xf4200000, 0xfff00000, FMT_7, {DM0, MEM2(IMM24, AN1)}},