diff options
author | 2024-01-23 09:21:30 +1100 | |
---|---|---|
committer | 2024-01-23 09:21:30 +1100 | |
commit | e1874ac7860730075492ad5ff459b21b8761c0a0 (patch) | |
tree | d4381493286366a0095b444d18f87f0aeeb98a8c /scripts/src/cpu.lua | |
parent | 379a28f801b4019b10299b0397fbb06cb22d556b (diff) |
Added a skeleton Aquaplus P/ECE driver.
skeleton/aquaplus_piece.cpp: Added skeleton Aquaplus P/ECE driver with
Flash and RAM mapped in the right places.
cpu/c33: Added skeleton devices for C33 STD Core (S1C33000) and
S1C33209/221/222.
New systems marked not working
------------------------------
Aquaplus P/ECE (512 kB Flash)
New clones marked not working
-----------------------------
Aquaplus P/ECE (2 MB Flash)
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index bd63b866156..50385aed586 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -3951,9 +3951,21 @@ if opt_tool(CPUS, "HT1130") then end -------------------------------------------------- --- Epson C33 STD, C33 ADV, etc., disassembler only +-- Epson C33 STD, C33 ADV, etc. +--@src/devices/cpu/c33/c33common.h,CPUS["C33"] = true -------------------------------------------------- +if CPUS["C33"] then + files { + MAME_DIR .. "src/devices/cpu/c33/c33common.h", + MAME_DIR .. "src/devices/cpu/c33/c33helpers.ipp", + MAME_DIR .. "src/devices/cpu/c33/c33std.cpp", + MAME_DIR .. "src/devices/cpu/c33/c33std.h", + MAME_DIR .. "src/devices/cpu/c33/s1c33209.cpp", + MAME_DIR .. "src/devices/cpu/c33/s1c33209.h", + } +end + if opt_tool(CPUS, "C33") then table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/c33/c33dasm.cpp") table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/c33/c33dasm.h") |