summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2025-01-02 12:30:59 +0700
committer Patrick Mackinlay <pmackinlay@hotmail.com>2025-01-02 12:32:32 +0700
commit2da636bb214ee65c339b385ffc3be275d06ff76e (patch)
tree02fccfdded5689b089e0f3cb711debd6cc1f1386 /scripts
parentab34107f9f6487444682837e106edaed0c35c491 (diff)
ds1215: modernize and complete emulation
* rename previous ds1315 to earlier/original ds1215 device * support both ds1215 and transparent access methods * implement rtc and nvram interfaces * support updating registers
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/machine.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 3cc9b40227b..5172bcc4381 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -1170,13 +1170,13 @@ end
---------------------------------------------------
--
---@src/devices/machine/ds1315.h,MACHINES["DS1315"] = true
+--@src/devices/machine/ds1215.h,MACHINES["DS1215"] = true
---------------------------------------------------
-if (MACHINES["DS1315"]~=null) then
+if (MACHINES["DS1215"]~=null) then
files {
- MAME_DIR .. "src/devices/machine/ds1315.cpp",
- MAME_DIR .. "src/devices/machine/ds1315.h",
+ MAME_DIR .. "src/devices/machine/ds1215.cpp",
+ MAME_DIR .. "src/devices/machine/ds1215.h",
}
end