diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-03-12 21:27:24 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-03-13 16:34:33 +0100 |
commit | c84813b807fc82c68ff6d72387f95b15ad283bf6 (patch) | |
tree | c04a7261e317037c0f9bee3f796c49f71134d57b /target/m68k/helper.h | |
parent | bc20b34e03b51725d7f008551b5f56f1da07ab6a (diff) |
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>
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 e1aca375e0..83247a8143 100644 --- a/target/m68k/helper.h +++ b/target/m68k/helper.h @@ -81,6 +81,7 @@ 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(facos, void, env, fp, fp) DEF_HELPER_3(mac_move, void, env, i32, i32) DEF_HELPER_3(macmulf, i64, env, i32, i32) |