mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
target/m68k: implement fcosh
Using a local m68k floatx80_cosh() [copied from previous: Written by Andreas Grabher for Previous, NeXT Computer Emulator.] Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20180312202728.23790-12-laurent@vivier.eu>
This commit is contained in:
parent
eee6b892a6
commit
02f9124ebe
5 changed files with 91 additions and 0 deletions
|
@ -5105,6 +5105,9 @@ DISAS_INSN(fpu)
|
|||
case 0x5c: /* fdabs */
|
||||
gen_helper_fdabs(cpu_env, cpu_dest, cpu_src);
|
||||
break;
|
||||
case 0x19: /* fcosh */
|
||||
gen_helper_fcosh(cpu_env, cpu_dest, cpu_src);
|
||||
break;
|
||||
case 0x1a: /* fneg */
|
||||
gen_helper_fneg(cpu_env, cpu_dest, cpu_src);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue