diff options
author | 2016-06-10 19:46:04 +0100 | |
---|---|---|
committer | 2016-06-10 19:46:04 +0100 | |
commit | f503c719341fbab3ac08cf4221a4f188494609fc (patch) | |
tree | 4c90b8f444c3024b1830fd5071cbfe96c7418865 /scripts/src/machine.lua | |
parent | c0f5e963534a28af6b1831239e70f8867a9d153a (diff) |
and the missing device (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index e6d7dbe7818..37bdb8fe933 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2868,6 +2868,7 @@ if (MACHINES["APPLE_FDC"]~=null) then MAME_DIR .. "src/devices/machine/applefdc.h", } end + --------------------------------------------------- -- --@src/devices/machine/sonydriv.h,MACHINES["SONY_DRIVE"] = true @@ -2878,3 +2879,14 @@ if (MACHINES["SONY_DRIVE"]~=null) then MAME_DIR .. "src/devices/machine/sonydriv.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/scnxx562.h,MACHINES["SCNXX562"] = true +--------------------------------------------------- +if (MACHINES["SCNXX562"]~=null) then + files { + MAME_DIR .. "src/devices/machine/scnxx562.cpp", + MAME_DIR .. "src/devices/machine/scnxx562.h", + } +end |