diff options
author | 2019-08-14 09:10:46 -0400 | |
---|---|---|
committer | 2019-08-14 09:12:12 -0400 | |
commit | 83e63dacf41f4d538101a4a5de2252fc87ff5deb (patch) | |
tree | 0227c79465c9f042d35482c9965f8bc3d925c869 /scripts/src/machine.lua | |
parent | e9b55b8155eeb382f0b767764d8ec399ccc46647 (diff) |
Add device emulation for DS17x85 series of MC146818-compatible RTCs with additional features
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 ce227154ef0..f660735d7ad 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -994,6 +994,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ds17x85.h,MACHINES["DS17X85"] = true +--------------------------------------------------- + +if (MACHINES["DS17X85"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ds17x85.cpp", + MAME_DIR .. "src/devices/machine/ds17x85.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds1994.h,MACHINES["DS1994"] = true --------------------------------------------------- |