diff options
| author | 2019-09-09 22:05:41 +0200 | |
|---|---|---|
| committer | 2019-09-09 16:05:41 -0400 | |
| commit | d4e2fbd306bf9f847fed16b9a9112eb6d8f56c8e (patch) | |
| tree | b91e639bf1dce0eb05d0b813c22f81aa88686da1 /scripts | |
| 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')
| -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 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 --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 47ffd35785d..441a69a72e8 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -471,6 +471,7 @@ MACHINES["ER2055"] = true MACHINES["F3853"] = true MACHINES["HD63450"] = true MACHINES["HD64610"] = true +MACHINES["HP_DC100_TAPE"] = true MACHINES["HP_TACO"] = true MACHINES["1MA6"] = true MACHINES["1MB5"] = true |
