diff options
author | 2025-01-02 12:30:59 +0700 | |
---|---|---|
committer | 2025-01-02 12:32:32 +0700 | |
commit | 2da636bb214ee65c339b385ffc3be275d06ff76e (patch) | |
tree | 02fccfdded5689b089e0f3cb711debd6cc1f1386 /scripts | |
parent | ab34107f9f6487444682837e106edaed0c35c491 (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.lua | 8 |
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 |