Skip to content

Commit

Permalink
Holtek HT1130 CPU core, and preliminary driver for a brick game using…
Browse files Browse the repository at this point in the history
… it (#11872)

new machines marked as NOT WORKING
--------------------------
Brick Game 96 in 1 (E-23 Plus Mark II) [azya52, David Haywood]
  • Loading branch information
mamehaze committed Dec 26, 2023
1 parent 70ebbc3 commit 6222175
Show file tree
Hide file tree
Showing 8 changed files with 2,005 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/src/cpu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3932,3 +3932,20 @@ if opt_tool(CPUS, "XTENSA") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/xtensa/xtensa_helper.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/xtensa/xtensa_helper.h")
end

--------------------------------------------------
-- Holtek HT1130
--@src/devices/cpu/ht1130/ht1130.h,CPUS["HT1130"] = true
--------------------------------------------------

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

if opt_tool(CPUS, "HT1130") then
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/ht1130/ht1130d.cpp")
table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/ht1130/ht1130d.h")
end
Loading

0 comments on commit 6222175

Please sign in to comment.