diff options
author | 2023-10-27 17:06:55 +0100 | |
---|---|---|
committer | 2023-10-28 03:06:55 +1100 | |
commit | ba621ec24df739b7fc11f8b8a32bda2b7ec653e9 (patch) | |
tree | 2d6d0fa25c256bdceb14b9c60f5627e3b7c3bee8 /scripts | |
parent | e2eb4551ce5713ba5c7a6d00a591fa4d5dca95ce (diff) |
sega/sega_beena.cpp: Emulated Advanced Pico BEENA and TV Ocha-Ken. (#11213)
Basic functionality is supported, making most games playable.
StoryWare display is not yet implemented.
Game-specific peripherals are not emulated.
There are still some issues with graphics.
emu/ioport.h: Fixed rarely-used PORT_CROSSHAIR_MAPPER and PORT_CROSSHAIR_MAPPER_MEMBER macros.
cpu/arm7: Added AP2010 CPU device.
sound/ap2010pcm.cpp: Added basic AP2010 PCM audio output device.
Systems promoted to working
------------------------
Sega Advanced Pico BEENA
New working systems
------------------------
Sega TV Ocha-Ken
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/cpu.lua | 2 | ||||
-rw-r--r-- | scripts/src/sound.lua | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index e10e7a84de6..f7b332e8f01 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -194,6 +194,8 @@ if CPUS["ARM7"] then MAME_DIR .. "src/devices/cpu/arm7/arm7.h", MAME_DIR .. "src/devices/cpu/arm7/arm7thmb.cpp", MAME_DIR .. "src/devices/cpu/arm7/arm7ops.cpp", + MAME_DIR .. "src/devices/cpu/arm7/ap2010cpu.cpp", + MAME_DIR .. "src/devices/cpu/arm7/ap2010cpu.h", MAME_DIR .. "src/devices/cpu/arm7/lpc210x.cpp", MAME_DIR .. "src/devices/cpu/arm7/lpc210x.h", MAME_DIR .. "src/devices/cpu/arm7/upd800468.cpp", diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 7cb136380c7..56573224bfa 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -112,7 +112,6 @@ if (SOUNDS["AC97"]~=null) then end - --------------------------------------------------- -- Apple custom sound chips --@src/devices/sound/asc.h,SOUNDS["ASC"] = true @@ -1656,3 +1655,15 @@ if (SOUNDS["NN71003F"]~=null) then MAME_DIR .. "src/devices/sound/nn71003f.h", } end + +--------------------------------------------------- +-- AP2010 +--@src/devices/sound/ap2010pcm.h,SOUNDS["AP2010"] = true +--------------------------------------------------- + +if (SOUNDS["AP2010"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ap2010pcm.cpp", + MAME_DIR .. "src/devices/sound/ap2010pcm.h", + } +end |