m68kfpu: add (d16,An) addr mode to WRITE_EA_FPE()

required by netbsd ps command, which utilizes the FPU.
This commit is contained in:
Sven Schnelle 2018-12-01 22:06:54 +01:00
parent 6d1d3a9f8c
commit 5057263956

View File

@ -1119,6 +1119,13 @@ void WRITE_EA_FPE(int ea, floatx80 fpr)
break;
}
case 5: // (d16,An)
{
uint32_t ea = EA_AY_DI_32();
store_extended_float80(ea, fpr);
break;
}
case 7:
{
switch (reg)