diff options
author | 2020-04-14 23:48:59 +0200 | |
---|---|---|
committer | 2020-04-14 23:58:11 +0200 | |
commit | efeddba15b0a2e4b4da1f69ed5aeca5b7c885fcd (patch) | |
tree | c458319318094ad43c0c6ea4e9930b3c42d15c50 /scripts/src/machine.lua | |
parent | cf078d736add075a78f488a3ec50c567d1a8fc29 (diff) |
bq48xx: Adding Benchmarq RTC chip emulations.
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 8f372635c7b..1ddeb8cb154 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -874,6 +874,30 @@ end --------------------------------------------------- -- +--@src/devices/machine/bq4847.h,MACHINES["BQ4847"] = true +--------------------------------------------------- + +if (MACHINES["BQ4847"]~=null) then + files { + MAME_DIR .. "src/devices/machine/bq4847.cpp", + MAME_DIR .. "src/devices/machine/bq4847.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/bq48x2.h,MACHINES["BQ4852"] = true +--------------------------------------------------- + +if (MACHINES["BQ4852"]~=null) then + files { + MAME_DIR .. "src/devices/machine/bq48x2.cpp", + MAME_DIR .. "src/devices/machine/bq48x2.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/busmouse.h,MACHINES["BUSMOUSE"] = true --------------------------------------------------- |