diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:23 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:34:25 +0100 |
commit | bc20b34e03b51725d7f008551b5f56f1da07ab6a (patch) | |
tree | 3aaabb9e76f475d039fc979beb3dc129b066dd7c /target/m68k/helper.h | |
parent | 8c992abc892c90caf1d4dd5b4482cda052a280ba (diff) | |
download | qemu-bc20b34e03b51725d7f008551b5f56f1da07ab6a.zip |
target/m68k: implement fasin
Using a local m68k floatx80_asin()
[copied from previous:
Written by Andreas Grabher for Previous, NeXT Computer Emulator.]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180312202728.23790-7-laurent@vivier.eu>
Diffstat (limited to 'target/m68k/helper.h')
-rw-r--r-- | target/m68k/helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/m68k/helper.h b/target/m68k/helper.h index 304569e997..e1aca375e0 100644 --- a/target/m68k/helper.h +++ b/target/m68k/helper.h @@ -80,6 +80,7 @@ DEF_HELPER_3(fsin, void, env, fp, fp) DEF_HELPER_3(fcos, void, env, fp, fp) DEF_HELPER_4(fsincos, void, env, fp, fp, fp) DEF_HELPER_3(fatan, void, env, fp, fp) +DEF_HELPER_3(fasin, void, env, fp, fp) DEF_HELPER_3(mac_move, void, env, i32, i32) DEF_HELPER_3(macmulf, i64, env, i32, i32) |