mirror of
https://github.com/holub/mame
synced 2025-05-06 14:25:54 +03:00
m68kfpu: add (d16,An) addr mode to WRITE_EA_FPE()
required by netbsd ps command, which utilizes the FPU.
This commit is contained in:
parent
6d1d3a9f8c
commit
5057263956
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user