mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
m68kfpu: support instructions with 80-bit FP immediate values. (GitHub issue #8049) [R. Belmont]
This commit is contained in:
parent
de236b6eb0
commit
6a1045f5d2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user