Skip to content

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

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

Merged
merged 17 commits into from
Dec 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 0 additions & 12 deletions scripts/src/sound.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1424,18 +1424,6 @@ if (SOUNDS["AD1848"]~=null) then
}
end

---------------------------------------------------
-- UPD1771
--@src/devices/sound/upd1771.h,SOUNDS["UPD1771"] = true
---------------------------------------------------

if (SOUNDS["UPD1771"]~=null) then
files {
MAME_DIR .. "src/devices/sound/upd1771.cpp",
MAME_DIR .. "src/devices/sound/upd1771.h",
}
end

---------------------------------------------------
-- GB_SOUND
--@src/devices/sound/gb.h,SOUNDS["GB_SOUND"] = true
Expand Down
Loading
Loading