diff options
author | 2018-08-25 00:17:41 +0200 | |
---|---|---|
committer | 2018-08-25 00:18:07 +0200 | |
commit | 40efe9785f680cbed22668b6e891c83cab176055 (patch) | |
tree | f522dff1def68408a1ed46c9933d9058925e492d /scripts/src/cpu.lua | |
parent | 25ee9eb21c1b049385a2496e9ef09f849146b7a9 (diff) |
-st62xx: Added a skeleton driver for the STmicro ST6 series of microcontrollers. [Ryan Holtz]
New machines marked as NOT_WORKING
----------------------------------
Catherine Wheel [f205v, Ryan Holtz]
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 65435228e33..6a8519a644b 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -749,6 +749,23 @@ if (CPUS["SH"]~=null or _OPTIONS["with-tools"]) then end -------------------------------------------------- +-- STmicro ST62xx +--@src/devices/cpu/st62xx/st62xx.h,CPUS["ST62XX"] = true +-------------------------------------------------- + +if (CPUS["ST62XX"]~=null) then + files { + MAME_DIR .. "src/devices/cpu/st62xx/st62xx.cpp", + MAME_DIR .. "src/devices/cpu/st62xx/st62xx.h", + } +end + +if (CPUS["ST62XX"]~=null or _OPTIONS["with-tools"]) then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/st62xx/st62xx_dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/st62xx/st62xx_dasm.h") +end + +-------------------------------------------------- -- HP Hybrid processor --@src/devices/cpu/hphybrid/hphybrid.h,CPUS["HPHYBRID"] = true -------------------------------------------------- |