diff options
author | 2024-07-26 13:09:30 +0100 | |
---|---|---|
committer | 2024-07-26 08:09:30 -0400 | |
commit | a1b2974ec91402e5e55d2f179abc850da8b49178 (patch) | |
tree | 88a199fff625e6b471d375566afd60ed4c25c298 /scripts/src | |
parent | 5b75406475dff5cb4a1133abecc610de8788476e (diff) |
cpu/xa: CPU core work for fearless/superkds - adds sound, promotes to working (#12617)
* This adds basic execution to XA core. It emulates enough of the XA to give fearless and superkds working sound.
* only the exact forms of the opcodes used so far have been implemented
* no optimizations have been done, use of const, inline use, templates etc. are planned for a future update; code is still primed for debugging and development
* overall structure, code style are not 100% final (see above) and will be adjusted as the CPU is better understood
* peripherals, interrupts etc. are not yet fully implemented, nor is anything outside of the page zero mode used here due to lack of test cases
Machines Promoted to WORKING
----------------------------------
Super Kids (S019CN) [David Haywood, XingXing]
Fearless Pinocchio (V101US) [David Haywood, XingXing, Peter Wilhelmsen, rtw]
---------
Co-authored-by: David Haywood <hazemamewip@hotmail.com>
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/cpu.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index e88a2c94716..85de8acd3c8 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -1209,6 +1209,7 @@ end if CPUS["XA"] then files { MAME_DIR .. "src/devices/cpu/xa/xa.cpp", + MAME_DIR .. "src/devices/cpu/xa/xa_ops.cpp", MAME_DIR .. "src/devices/cpu/xa/xa.h", } end |