diff options
| author | 2021-06-22 17:10:30 -0500 | |
|---|---|---|
| committer | 2021-06-22 17:10:30 -0500 | |
| commit | 188a28c9ff09ab95beb0427c8ea1b37dd512e6c1 (patch) | |
| tree | 693fa007256b4de767090bb4b8427c4c614bf6ca /scripts | |
| parent | c7bbfc54595712f31e35b1810aeb82c99bd7d33c (diff) | |
vis: add memory card device
Diffstat (limited to 'scripts')
| -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 1df555aa05f..456b21e836d 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1199,6 +1199,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ds2404.h,MACHINES["DS6417"] = true +--------------------------------------------------- + +if (MACHINES["DS6417"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ds6417.cpp", + MAME_DIR .. "src/devices/machine/ds6417.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds75160a.h,MACHINES["DS75160A"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 0b1f1ecb0e1..15e31fd7400 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -516,6 +516,7 @@ MACHINES["DS1386"] = true MACHINES["DS17X85"] = true MACHINES["DS2401"] = true MACHINES["DS2404"] = true +MACHINES["DS6417"] = true MACHINES["DS75160A"] = true MACHINES["DS75161A"] = true MACHINES["DS8874"] = true |
