Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace uPD1771c high level emulation with a cpu core. #13106

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions hash/scv.xml
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,10 @@ Information found at http://www.rhod.fr/yeno_epoch.html
</part>
</software>

<software name="starspdr" supported="partial">
<software name="starspdr">
<description>Star Speeder</description>
<year>1985</year>
<publisher>Epoch</publisher>
<notes>uPD1771 adpcm playback is not supported.</notes>
<part name="cart" interface="scv_cart">
<feature name="slot" value="rom64k"/>
<dataarea name="rom" size="0x10000">
Expand Down
7 changes: 7 additions & 0 deletions scripts/src/cpu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3928,6 +3928,13 @@ end
--@src/devices/cpu/upd177x/upd177x.h,CPUS["UPD177X"] = true
--------------------------------------------------

if CPUS["UPD177X"] then
files {
MAME_DIR .. "src/devices/cpu/upd177x/upd177x.cpp",
MAME_DIR .. "src/devices/cpu/upd177x/upd177x.h",
}
end

if opt_tool(CPUS, "UPD177X") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/upd177x/upd177xd.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/upd177x/upd177xd.h")
Expand Down
Loading
Loading