diff options
author | 2017-04-12 17:32:22 -0500 | |
---|---|---|
committer | 2017-04-12 17:32:22 -0500 | |
commit | 490d00afb7024a53e16511f98bfff82e4185bd3e (patch) | |
tree | c6950a4675023e57832b7b2f03d66e256ba6657d /scripts/src/machine.lua | |
parent | 2f47ccd579ab4862c391c8de6732c3e767e610f0 (diff) |
ds1205: Add Dallas DS1205 Multikey [Carl]
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 493575cc093..fd0f4c5c17a 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -780,6 +780,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ds1205.h,MACHINES["DS1205"] = true +--------------------------------------------------- + +if (MACHINES["DS1205"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ds1205.cpp", + MAME_DIR .. "src/devices/machine/ds1205.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds1302.h,MACHINES["DS1302"] = true --------------------------------------------------- |