summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/cpu.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r--scripts/src/cpu.lua24
1 files changed, 21 insertions, 3 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua
index 515c55a222c..88c12563126 100644
--- a/scripts/src/cpu.lua
+++ b/scripts/src/cpu.lua
@@ -1,12 +1,12 @@
+-- license:BSD-3-Clause
+-- copyright-holders:MAMEdev Team
+
---------------------------------------------------------------------------
--
-- cpu.lua
--
-- Rules for building CPU cores
--
--- Copyright Nicola Salmoria and the MAME Team.
--- Visit http://mamedev.org for licensing and usage restrictions.
---
---------------------------------------------------------------------------
--------------------------------------------------
@@ -360,6 +360,24 @@ 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",
+ MAME_DIR .. "src/emu/cpu/e0c6200/e0c6s46.c",
+ MAME_DIR .. "src/emu/cpu/e0c6200/e0c6s46.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
--------------------------------------------------