summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
author fulivi <fulivi@users.noreply.github.com>2015-06-03 14:22:59 +0200
committer fulivi <fulivi@users.noreply.github.com>2015-06-03 14:22:59 +0200
commit7717489f3ed419c5fb1814be5504e07e9c07b83a (patch)
tree871c45e53b20895a02e62af66a17d3a8c41cc95f /scripts/src/cpu.lua
parent64e16ca8cf6f8f3f63a9a7604153a8c4725a7cf4 (diff)
hp64k: Preliminary version of HP Hybrid CPU (no interrupts & no DMA yet)
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r--scripts/src/cpu.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 68d93da6ec5..fa01ecd34ca 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -632,6 +632,22 @@ if (CPUS["SH4"]~=null or _OPTIONS["with-tools"]) then
end
--------------------------------------------------
+-- HP Hybrid processor
+---@src/emu/cpu/hphybrid/hphybrid.h,CPUS += HPHYBRID
+--------------------------------------------------
+
+if (CPUS["HPHYBRID"]~=null) then
+ files {
+ MAME_DIR .. "src/emu/cpu/hphybrid/hphybrid.c",
+ MAME_DIR .. "src/emu/cpu/hphybrid/hphybrid.h",
+ }
+end
+
+if (CPUS["HPHYBRID"]~=null or _OPTIONS["with-tools"]) then
+ table.insert(disasm_files , MAME_DIR .. "src/emu/cpu/hphybrid/hphybrid_dasm.c")
+end
+
+--------------------------------------------------
-- Hudsonsoft 6280
---@src/emu/cpu/h6280/h6280.h,CPUS += H6280
--------------------------------------------------