diff options
author | 2015-06-10 14:13:32 +0200 | |
---|---|---|
committer | 2015-06-10 14:13:32 +0200 | |
commit | 6ad1b325952110f87546d74e7d179f216060593f (patch) | |
tree | 3439ff063eeaf8ca09a3c19a66231402f4ec27f8 /scripts/src/cpu.lua | |
parent | 1c1860499f41efcf7df6fee3adda6d1557c31c35 (diff) | |
parent | 9fc4731399cfb1791fcbac63e1976fce0dbd3f18 (diff) |
Merge pull request #207 from fulivi/hp64k_dev
New driver for hp 64000 development system
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 16 |
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 -------------------------------------------------- |