mirror of
https://github.com/holub/mame
synced 2025-05-13 09:28:13 +03:00
Merge pull request #4364 from hp9k/fpu_fixes
m68kfpu: add (d16,An) addr mode to WRITE_EA_FPE()
This commit is contained in:
commit
75e2c03fa6
@ -1119,6 +1119,13 @@ void WRITE_EA_FPE(int ea, floatx80 fpr)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case 5: // (d16,An)
|
||||||
|
{
|
||||||
|
uint32_t ea = EA_AY_DI_32();
|
||||||
|
store_extended_float80(ea, fpr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case 7:
|
case 7:
|
||||||
{
|
{
|
||||||
switch (reg)
|
switch (reg)
|
||||||
|
Loading…
Reference in New Issue
Block a user