diff options
author | 2018-12-30 00:25:32 -0500 | |
---|---|---|
committer | 2018-12-30 00:25:32 -0500 | |
commit | b242f119b6af1c6efc4288916372be1f37d479c8 (patch) | |
tree | 24c02e0e053474214d05a1a243191f197ea5b56b /scripts/src/machine.lua | |
parent | 6d623fe87a2ee1bf6e761f93865359f6c99f4185 (diff) |
Added a skeleton for the DEC DC7085 (aka "DZ") quad UART. [R. Belmont]
Diffstat (limited to 'scripts/src/machine.lua')
-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 9433450b1b9..8b9235f769b 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3843,3 +3843,15 @@ if (MACHINES["AIC6250"]~=null) then MAME_DIR .. "src/devices/machine/aic6250.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/dc7085.h,MACHINES["DC7085"] = true +--------------------------------------------------- + +if (MACHINES["DC7085"]~=null) then + files { + MAME_DIR .. "src/devices/machine/dc7085.cpp", + MAME_DIR .. "src/devices/machine/dc7085.h", + } +end
\ No newline at end of file |