Musashi icon indicating copy to clipboard operation
Musashi copied to clipboard

SUBA.L timing mismatch

Open dirkwhoffmann opened this issue 6 years ago • 0 comments

Instruction: suba.l D0, A0

Test case: sub1l https://github.com/dirkwhoffmann/vAmigaTS/tree/master/CPU/SUBA/suba1l

Musashi:

sub1l_vAmiga

Amiga 500+ 🥰:

suba1l_A500+

Conclusion:

{m68k_op_suba_32_d           , 0xf1f8, 0x91c0, {  6,   6,   2,   2}},
{m68k_op_suba_32_a           , 0xf1f8, 0x91c8, {  6,   6,   2,   2}},

must be:

{m68k_op_suba_32_d           , 0xf1f8, 0x91c0, {  8,   6,   2,   2}},
{m68k_op_suba_32_a           , 0xf1f8, 0x91c8, {  8,   6,   2,   2}},

I cannot say anything about 68010 timing.

dirkwhoffmann avatar Dec 27 '19 09:12 dirkwhoffmann