diff options
author | 2015-05-05 15:54:07 +0200 | |
---|---|---|
committer | 2015-05-05 15:54:07 +0200 | |
commit | fc68370aa5c04ac0d0f0e9982e0b79a2d734980d (patch) | |
tree | 01708a2993e0d09e05090ecc0d9d3bb8db6b29a8 /scripts/src | |
parent | 96b6c8ec08e0c42f8c4de430c198e8b21d991c44 (diff) |
added E0C6200 cpu skeleton.
also commented out some cpu cores from mame.lua, not needed anymore for unidasm compile due to this check:
if (CPUS["MYCPU"]~=null or _OPTIONS["with-tools"]) then
Diffstat (limited to 'scripts/src')
-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 515c55a222c..cb80c5403f4 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -360,6 +360,22 @@ if (CPUS["ESRIP"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- +-- Seiko Epson E0C6200 series +---@src/emu/cpu/e0c6200/e0c6200.h,CPUS += E0C6200 +-------------------------------------------------- + +if (CPUS["E0C6200"]~=null) then + files { + MAME_DIR .. "src/emu/cpu/e0c6200/e0c6200.c", + MAME_DIR .. "src/emu/cpu/e0c6200/e0c6200.h", + } +end + +if (CPUS["E0C6200"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/emu/cpu/e0c6200/e0c6200d.c") +end + +-------------------------------------------------- -- RCA COSMAC ---@src/emu/cpu/cosmac/cosmac.h,CPUS += COSMAC -------------------------------------------------- |