diff options
author | 2019-06-23 00:58:19 +0200 | |
---|---|---|
committer | 2019-06-23 00:58:37 +0200 | |
commit | e73cf96fbd9c2c5d3b8db4c31f5879cc74e68c14 (patch) | |
tree | ea88c340de74179e91675cb39e91ac18c1a6aa3c /scripts/src/machine.lua | |
parent | 48f7db090f9de0652a7c05724f2ffc0946198194 (diff) |
added sensorboard with piece recognition (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index c34c317fc0e..58f24b5647e 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -60,6 +60,8 @@ files { MAME_DIR .. "src/devices/imagedev/snapquik.cpp", MAME_DIR .. "src/devices/imagedev/snapquik.h", } + + --------------------------------------------------- -- --@src/devices/machine/akiko.h,MACHINES["AKIKO"] = true @@ -2663,25 +2665,37 @@ end --------------------------------------------------- -- ---@src/devices/machine/serflash.h,MACHINES["SERFLASH"] = true +--@src/devices/machine/sda2006.h,MACHINES["SDA2006"] = true --------------------------------------------------- -if (MACHINES["SERFLASH"]~=null) then +if (MACHINES["SDA2006"]~=null) then files { - MAME_DIR .. "src/devices/machine/serflash.cpp", - MAME_DIR .. "src/devices/machine/serflash.h", + MAME_DIR .. "src/devices/machine/sda2006.cpp", + MAME_DIR .. "src/devices/machine/sda2006.h", } end --------------------------------------------------- -- ---@src/devices/machine/sda2006.h,MACHINES["SDA2006"] = true +--@src/devices/machine/sensorboard.h,MACHINES["SENSORBOARD"] = true --------------------------------------------------- -if (MACHINES["SDA2006"]~=null) then +if (MACHINES["SENSORBOARD"]~=null) then files { - MAME_DIR .. "src/devices/machine/sda2006.cpp", - MAME_DIR .. "src/devices/machine/sda2006.h", + MAME_DIR .. "src/devices/machine/sensorboard.cpp", + MAME_DIR .. "src/devices/machine/sensorboard.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/serflash.h,MACHINES["SERFLASH"] = true +--------------------------------------------------- + +if (MACHINES["SERFLASH"]~=null) then + files { + MAME_DIR .. "src/devices/machine/serflash.cpp", + MAME_DIR .. "src/devices/machine/serflash.h", } end |