mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
target/m68k: implement facos
Using a local m68k floatx80_acos() [copied from previous: Written by Andreas Grabher for Previous, NeXT Computer Emulator.] Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20180312202728.23790-8-laurent@vivier.eu>
This commit is contained in:
parent
bc20b34e03
commit
c84813b807
5 changed files with 80 additions and 0 deletions
|
@ -5105,6 +5105,9 @@ DISAS_INSN(fpu)
|
|||
case 0x5e: /* fdneg */
|
||||
gen_helper_fdneg(cpu_env, cpu_dest, cpu_src);
|
||||
break;
|
||||
case 0x1c: /* facos */
|
||||
gen_helper_facos(cpu_env, cpu_dest, cpu_src);
|
||||
break;
|
||||
case 0x1d: /* fcos */
|
||||
gen_helper_fcos(cpu_env, cpu_dest, cpu_src);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue