diff options
author | 2022-12-24 20:33:59 +0100 | |
---|---|---|
committer | 2022-12-25 06:33:59 +1100 | |
commit | 0ce06a9d748f59455655f004a1d92f5e03d1ee5c (patch) | |
tree | 939511bbed7c58607f6a3a185782f5caedf7ef85 /scripts/src/formats.lua | |
parent | e76c27800e6e0e791c28544ac6156160ea9180dc (diff) |
formats/hp300_dsk.cpp, formats/hp_lif.cpp: Added HP 300 floppy format and LIF filesystem. (#10729)
Added support for various disk formats used with HP computers. Named
'hp300', but also contains formats used with HP85 and HP150 computers,
using the same floppy drivers as the 300 series.
Most of the information was taken from "HP Flexible Disk Formats" by
Martin Hepperle.
HP LIF was used in quite a lot of different HP products like the
HP 9000/300, HP85/87 and HP150 computers. Added support for
reading this filesystem.
Diffstat (limited to 'scripts/src/formats.lua')
-rw-r--r-- | scripts/src/formats.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/src/formats.lua b/scripts/src/formats.lua index 132a33ec2ce..0fc21bb1941 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -1093,6 +1093,18 @@ end -------------------------------------------------- -- +--@src/lib/formats/hp_ipc_dsk.h,FORMATS["HP300_DSK"] = true +-------------------------------------------------- + +if opt_tool(FORMATS, "HP300_DSK") then + files { + MAME_DIR.. "src/lib/formats/hp300_dsk.cpp", + MAME_DIR.. "src/lib/formats/hp300_dsk.h", + } +end + +-------------------------------------------------- +-- --@src/lib/formats/hpi_dsk.h,FORMATS["HPI_DSK"] = true -------------------------------------------------- @@ -2174,6 +2186,18 @@ end -------------------------------------------------- -- +--@src/lib/formats/fs_hplif.h,FORMATS["FS_HPLIF"] = true +-------------------------------------------------- + +if opt_tool(FORMATS, "FS_HPLIF") then + files { + MAME_DIR.. "src/lib/formats/fs_hplif.cpp", + MAME_DIR.. "src/lib/formats/fs_hplif.h", + } +end + +-------------------------------------------------- +-- --@src/lib/formats/fs_oric_jasmin.h,FORMATS["FS_ORIC_JASMIN"] = true -------------------------------------------------- |