Add M68kFPU mode 7, reg 0

This commit is contained in:
Brandon Munger 2015-08-02 18:37:13 -04:00
parent f50b8ff8a6
commit 08a4919ba5

View File

@ -988,6 +988,12 @@ static void WRITE_EA_32(m68000_base_device *m68k, int ea, UINT32 data)
{
switch (reg)
{
case 0: // (xxx).W
{
UINT32 ea = OPER_I_16(m68k);
m68ki_write_32(m68k, ea, data);
break;
}
case 1: // (xxx).L
{
UINT32 d1 = OPER_I_16(m68k);