Merge pull request #4364 from hp9k/fpu_fixes

m68kfpu: add (d16,An) addr mode to WRITE_EA_FPE()
This commit is contained in:
R. Belmont 2018-12-02 07:46:42 -05:00 committed by GitHub
commit 75e2c03fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)