diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1997-03-17 16:50:51 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1997-03-17 16:50:51 +0000 |
commit | 437579d5084525103ba651dd8d6fee55dfef3648 (patch) | |
tree | 41fbad7c1e2d687e894c8d6104b0cccbd6964afb /opcodes/m68k-opc.c | |
parent | 50ede03d760c23490792fc84fe98969fe5dfbacd (diff) | |
download | gdb-437579d5084525103ba651dd8d6fee55dfef3648.zip gdb-437579d5084525103ba651dd8d6fee55dfef3648.tar.gz gdb-437579d5084525103ba651dd8d6fee55dfef3648.tar.bz2 |
* m68k-opc.c (m68k_opcodes): Provide correct entries for mulsl and
mulul insns on the coldfire.
Diffstat (limited to 'opcodes/m68k-opc.c')
-rw-r--r-- | opcodes/m68k-opc.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/opcodes/m68k-opc.c b/opcodes/m68k-opc.c index febad08..f635c6c 100644 --- a/opcodes/m68k-opc.c +++ b/opcodes/m68k-opc.c @@ -1344,11 +1344,21 @@ const struct m68k_opcode m68k_opcodes[] = {"move16", one(0xf618), one(0xfff8), "_Las", m68040up }, {"mulsw", one(0140700), one(0170700), ";wDd", m68000up|mcf5200 }, -{"mulsl", two(0046000,004000), two(0177700,0107770), ";lD1", m68020up|cpu32|mcf5200 }, +{"mulsl", two(0046000,004000), two(0177700,0107770), ";lD1", m68020up|cpu32 }, +{"mulsl", two(0046000,004000), two(0177700,0107770), "DsD1", mcf5200 }, +{"mulsl", two(0046000,004000), two(0177700,0107770), "asD1", mcf5200 }, +{"mulsl", two(0046000,004000), two(0177700,0107770), "+sD1", mcf5200 }, +{"mulsl", two(0046000,004000), two(0177700,0107770), "-sD1", mcf5200 }, +{"mulsl", two(0046000,004000), two(0177700,0107770), "dsD1", mcf5200 }, {"mulsl", two(0046000,006000), two(0177700,0107770), ";lD3D1",m68020up|cpu32 }, {"muluw", one(0140300), one(0170700), ";wDd", m68000up|mcf5200 }, -{"mulul", two(0046000,000000), two(0177700,0107770), ";lD1", m68020up|cpu32|mcf5200 }, +{"mulul", two(0046000,000000), two(0177700,0107770), ";lD1", m68020up|cpu32 }, +{"mulul", two(0046000,000000), two(0177700,0107770), "DsD1", mcf5200 }, +{"mulul", two(0046000,000000), two(0177700,0107770), "asD1", mcf5200 }, +{"mulul", two(0046000,000000), two(0177700,0107770), "+sD1", mcf5200 }, +{"mulul", two(0046000,000000), two(0177700,0107770), "-sD1", mcf5200 }, +{"mulul", two(0046000,000000), two(0177700,0107770), "dsD1", mcf5200 }, {"mulul", two(0046000,002000), two(0177700,0107770), ";lD3D1",m68020up|cpu32 }, {"nbcd", one(0044000), one(0177700), "$s", m68000up }, @@ -1815,11 +1825,11 @@ TBL("tblunb", "tblunw", "tblunl", 0, 0), {"trapv", one(0047166), one(0177777), "", m68000up }, {"tstb", one(0045000), one(0177700), ";b", m68020up | mcf5200 }, -{"tstb", one(0045000), one(0177700), "@b", m68000 }, +{"tstb", one(0045000), one(0177700), "@b", m68000up }, {"tstw", one(0045100), one(0177700), "*w", m68020up | mcf5200 }, -{"tstw", one(0045100), one(0177700), "@w", m68000 }, +{"tstw", one(0045100), one(0177700), "@w", m68000up }, {"tstl", one(0045200), one(0177700), "*l", m68020up | mcf5200 }, -{"tstl", one(0045200), one(0177700), "@l", m68000 }, +{"tstl", one(0045200), one(0177700), "@l", m68000up }, {"unlk", one(0047130), one(0177770), "As", m68000up | mcf5200 }, |