diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:22 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:34:16 +0100 |
commit | 8c992abc892c90caf1d4dd5b4482cda052a280ba (patch) | |
tree | 127e83d9982c53b2c67e0c45cabf00463686eb5d /target/m68k/translate.c | |
parent | 47446c9ce34b6685ffe20e829ff6c9aaefd3af0a (diff) | |
download | qemu-8c992abc892c90caf1d4dd5b4482cda052a280ba.zip |
target/m68k: implement fatan
Using a local m68k floatx80_atan()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180312202728.23790-6-laurent@vivier.eu>
Diffstat (limited to 'target/m68k/translate.c')
-rw-r--r-- | target/m68k/translate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/m68k/translate.c b/target/m68k/translate.c index a78edd8825..88015e7ed8 100644 --- a/target/m68k/translate.c +++ b/target/m68k/translate.c @@ -5057,6 +5057,9 @@ DISAS_INSN(fpu) case 0x06: /* flognp1 */ gen_helper_flognp1(cpu_env, cpu_dest, cpu_src); break; + case 0x0a: /* fatan */ + gen_helper_fatan(cpu_env, cpu_dest, cpu_src); + break; case 0x0e: /* fsin */ gen_helper_fsin(cpu_env, cpu_dest, cpu_src); break; |