diff options
author | 2020-03-22 21:01:59 -0400 | |
---|---|---|
committer | 2020-03-22 21:01:59 -0400 | |
commit | 8434fd6213811c4fa257106c3c680a2c729a11fc (patch) | |
tree | 8a268307eddefdc338e110dcb80a1d367ea09092 /scripts/src | |
parent | 246b64ad0bf37be22c5266b390a299686b35579c (diff) |
Added ICM7170 real-time clock device. [R. Belmont]
Diffstat (limited to 'scripts/src')
-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 f53859c6e8b..b5699bf01c9 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1445,6 +1445,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true +--------------------------------------------------- + +if (MACHINES["ICM7170"]~=null) then + files { + MAME_DIR .. "src/devices/machine/icm7170.cpp", + MAME_DIR .. "src/devices/machine/icm7170.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/idectrl.h,MACHINES["IDECTRL"] = true --@src/devices/machine/vt83c461.h,MACHINES["IDECTRL"] = true --------------------------------------------------- |