diff options
author | 2019-09-09 22:05:41 +0200 | |
---|---|---|
committer | 2019-09-09 16:05:41 -0400 | |
commit | d4e2fbd306bf9f847fed16b9a9112eb6d8f56c8e (patch) | |
tree | b91e639bf1dce0eb05d0b813c22f81aa88686da1 /scripts/src/machine.lua | |
parent | eaae4640aa5b9db02ee3e7e16617c8413fe43daf (diff) |
HP9845: TACO driver re-written (#5601)
* hp9825: fixed a bug in 9825t
* hp9845: TACO driver re-written from scratch, DC100 tape separated into
a new device, various adaptations
* hp9845: "new TACO" renamed to just "TACO"
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 164399017a5..726d92510c5 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1192,6 +1192,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/hp_dc100_tape.h,MACHINES["HP_DC100_TAPE"] = true +--------------------------------------------------- + +if (MACHINES["HP_DC100_TAPE"]~=null) then + files { + MAME_DIR .. "src/devices/machine/hp_dc100_tape.cpp", + MAME_DIR .. "src/devices/machine/hp_dc100_tape.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/hp_taco.h,MACHINES["HP_TACO"] = true --------------------------------------------------- |