diff options
author | 2010-03-12 05:41:10 +0000 | |
---|---|---|
committer | 2010-03-12 05:41:10 +0000 | |
commit | baf6a9cd0bfdcdd6c81da48060bf711811644745 (patch) | |
tree | 13f27d9ca2e0085c2c4354efa5a045b75d80f797 /src/emu/cpu/m68000/m68kmake.c | |
parent | 8f2ca955758fd9a72d8db12465d66c1a84c66456 (diff) |
680x0 FPU updates [R. Belmont]
- Rewritten to use SoftFloat instead of unportable native FP math
- Support added for Motorola 96-bit extended floats
- More addressing modes and conditions supported
The taitojc games function identically to the old implementation (I stepped
through the main matrix multiply in dendeg and the registers never diverged)
and speed on Core 2 Duo is a wash - sometimes softfloat's faster, sometimes
not, but the difference on -str 90 never exceeded 1%.
Diffstat (limited to 'src/emu/cpu/m68000/m68kmake.c')
-rw-r--r-- | src/emu/cpu/m68000/m68kmake.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/emu/cpu/m68000/m68kmake.c b/src/emu/cpu/m68000/m68kmake.c index 067988f877b..b0d27097750 100644 --- a/src/emu/cpu/m68000/m68kmake.c +++ b/src/emu/cpu/m68000/m68kmake.c @@ -3,10 +3,11 @@ /* ======================================================================== */ /* * MUSASHI - * Version 4.55 + * Version 4.60 * * A portable Motorola M680x0 processor emulation engine. * Copyright Karl Stenerud. All rights reserved. + * FPU and MMU by R. Belmont. * * This code may be freely used for non-commercial purposes as long as this * copyright notice remains unaltered in the source code and any binary files @@ -55,7 +56,7 @@ */ -static const char g_version[] = "4.55"; +static const char g_version[] = "4.60"; /* ======================================================================== */ /* =============================== INCLUDES =============================== */ |