diff options
author | 2022-03-29 15:14:55 +0200 | |
---|---|---|
committer | 2022-03-29 15:14:55 +0200 | |
commit | 9d9ec1a2f7571a484ad005129a72a8c96db28d10 (patch) | |
tree | 3dced03810ce3ec695b0ef8f041d409b58092a28 /scripts/src | |
parent | bf7961cd455903a6091c5f59af5ce3dd026d8937 (diff) |
rw5000: add a5500
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/cpu.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 84f03c085c7..f578e6ac969 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -2855,6 +2855,7 @@ end -------------------------------------------------- -- Rockwell A/B5000 family --@src/devices/cpu/rw5000/a5000.h,CPUS["RW5000"] = true +--@src/devices/cpu/rw5000/a5500.h,CPUS["RW5000"] = true --@src/devices/cpu/rw5000/b5000.h,CPUS["RW5000"] = true --@src/devices/cpu/rw5000/b6000.h,CPUS["RW5000"] = true --@src/devices/cpu/rw5000/b6100.h,CPUS["RW5000"] = true @@ -2867,12 +2868,14 @@ if CPUS["RW5000"] then MAME_DIR .. "src/devices/cpu/rw5000/b5000.cpp", MAME_DIR .. "src/devices/cpu/rw5000/b5000.h", MAME_DIR .. "src/devices/cpu/rw5000/b5000op.cpp", - MAME_DIR .. "src/devices/cpu/rw5000/a5000.cpp", - MAME_DIR .. "src/devices/cpu/rw5000/a5000.h", MAME_DIR .. "src/devices/cpu/rw5000/b6000.cpp", MAME_DIR .. "src/devices/cpu/rw5000/b6000.h", MAME_DIR .. "src/devices/cpu/rw5000/b6100.cpp", MAME_DIR .. "src/devices/cpu/rw5000/b6100.h", + MAME_DIR .. "src/devices/cpu/rw5000/a5000.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/a5000.h", + MAME_DIR .. "src/devices/cpu/rw5000/a5500.cpp", + MAME_DIR .. "src/devices/cpu/rw5000/a5500.h", } end |