diff options
author | 2016-06-10 19:46:04 +0100 | |
---|---|---|
committer | 2016-06-10 19:46:04 +0100 | |
commit | f503c719341fbab3ac08cf4221a4f188494609fc (patch) | |
tree | 4c90b8f444c3024b1830fd5071cbfe96c7418865 | |
parent | c0f5e963534a28af6b1831239e70f8867a9d153a (diff) |
and the missing device (nw)
-rw-r--r-- | scripts/src/machine.lua | 12 | ||||
-rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 13 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 diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index d6c3d16c99b..bb954c55886 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -583,6 +583,7 @@ MACHINES["SMARTMEDIA"] = true MACHINES["APPLE_DRIVE"] = true MACHINES["APPLE_FDC"] = true MACHINES["SONY_DRIVE"] = true +MACHINES["SCNXX562"] = true -------------------------------------------------- -- specify available bus cores |