diff options
| author | 2017-08-16 15:36:06 -0400 | |
|---|---|---|
| committer | 2017-08-16 15:36:06 -0400 | |
| commit | 961169d5e8da89c214936e0b0751da61349509bc (patch) | |
| tree | b5e9c003acbc995d1993910aac19d62bb3327b5b /scripts | |
| parent | 3159d52e2fd9640abddaedaa7e527f6999b8f849 (diff) | |
| parent | 4c5ed8b64b6ce10de022a151b9d647c3b25fcab1 (diff) | |
Merge pull request #2568 from fulivi/hp80_dev01
Emulation of HP85 tape drive
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/formats.lua | 12 | ||||
| -rw-r--r-- | scripts/src/machine.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 2 |
3 files changed, 26 insertions, 0 deletions
diff --git a/scripts/src/formats.lua b/scripts/src/formats.lua index b8bd7d3e38b..29a22b23ad0 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -907,6 +907,18 @@ end -------------------------------------------------- -- +--@src/lib/formats/hti_tape.h,FORMATS["HTI_TAP"] = true +-------------------------------------------------- + +if (FORMATS["HTI_TAP"]~=null or _OPTIONS["with-tools"]) then + files { + MAME_DIR.. "src/lib/formats/hti_tape.cpp", + MAME_DIR.. "src/lib/formats/hti_tape.h", + } +end + +-------------------------------------------------- +-- --@src/lib/formats/hpi_dsk.h,FORMATS["HPI_DSK"] = true -------------------------------------------------- diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 0683ab0a0b9..277d6ba95e5 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1012,6 +1012,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/1ma6.h,MACHINES["1MA6"] = true +--------------------------------------------------- + +if (MACHINES["1MA6"]~=null) then + files { + MAME_DIR .. "src/devices/machine/1ma6.cpp", + MAME_DIR .. "src/devices/machine/1ma6.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/i2cmem.h,MACHINES["I2CMEM"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index f2af1a78072..1af77a61411 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -415,6 +415,7 @@ MACHINES["F3853"] = true MACHINES["HD63450"] = true MACHINES["HD64610"] = true MACHINES["HP_TACO"] = true +MACHINES["1MA6"] = true MACHINES["I2CMEM"] = true MACHINES["I7220"] = true MACHINES["I80130"] = true @@ -814,6 +815,7 @@ FORMATS["GTP_CAS"] = true FORMATS["HECTOR_MINIDISC"] = true FORMATS["HECT_DSK"] = true FORMATS["HECT_TAP"] = true +FORMATS["HTI_TAP"] = true FORMATS["HPI_DSK"] = true FORMATS["HP_IPC_DSK"] = true FORMATS["IQ151_DSK"] = true |
