m68kfpu: support instructions with 80-bit FP immediate values. (GitHub issue #8049) [R. Belmont]

This commit is contained in:
arbee 2021-05-11 22:51:46 -04:00
parent de236b6eb0
commit 6a1045f5d2

View File

@ -722,6 +722,11 @@ floatx80 m68000_base_device::READ_EA_FPE(int ea)
}
break;
case 4: // #<data>
fpr = load_extended_float80(m_pc);
m_pc += 12;
break;
default:
fatalerror("M68kFPU: READ_EA_FPE: unhandled mode %d, reg %d, at %08X\n", mode, reg, m_pc);
break;