mirror of
https://github.com/holub/mame
synced 2025-04-16 05:24:54 +03:00
m68k: Implement FMOVEM mode 0b11 (#8022)
Since the two bits seem to have symmetry, it's odd this wasn't there before. Should fix issues with Domain/OS and NeXTSTEP emulation.
This commit is contained in:
parent
e72e97b174
commit
b77f120ac7
@ -1773,6 +1773,10 @@ void m68000_base_device::fmovem(u16 w2)
|
||||
break;
|
||||
}
|
||||
|
||||
case 3: // Dynamic register list, postincrement or control addressing mode.
|
||||
// FIXME: not really tested, but seems to work
|
||||
reglist = REG_D()[(reglist >> 4) & 7];
|
||||
[[fallthrough]];
|
||||
case 2: // Static register list, postdecrement or control addressing mode
|
||||
{
|
||||
for (i=0; i < 8; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user