pc_formats: Believe it or not, but it seems there has been released pc-format ipfs

This commit is contained in:
Olivier Galibert 2021-05-16 19:53:59 +02:00
parent 3afebb520a
commit 3b13ae6d71
2 changed files with 4 additions and 12 deletions

View File

@ -50,6 +50,8 @@ project "formats"
MAME_DIR .. "src/lib/formats/cqm_dsk.h",
MAME_DIR .. "src/lib/formats/dsk_dsk.cpp",
MAME_DIR .. "src/lib/formats/dsk_dsk.h",
MAME_DIR .. "src/lib/formats/ipf_dsk.cpp",
MAME_DIR .. "src/lib/formats/ipf_dsk.h",
MAME_DIR .. "src/lib/formats/td0_dsk.cpp",
MAME_DIR .. "src/lib/formats/td0_dsk.h",
MAME_DIR .. "src/lib/formats/hxchfe_dsk.cpp",
@ -1495,18 +1497,6 @@ if opt_tool(FORMATS, "PC98_DSK") then
}
end
--------------------------------------------------
--
--@src/lib/formats/ipf_dsk.h,FORMATS["IPF_DSK"] = true
--------------------------------------------------
if opt_tool(FORMATS, "IPF_DSK") then
files {
MAME_DIR.. "src/lib/formats/ipf_dsk.cpp",
MAME_DIR.. "src/lib/formats/ipf_dsk.h",
}
end
--------------------------------------------------
--
--@src/lib/formats/phc25_cas.h,FORMATS["PHC25_CAS"] = true

View File

@ -19,6 +19,7 @@
#include "formats/cqm_dsk.h"
#include "formats/dsk_dsk.h"
#include "formats/pc_dsk.h"
#include "formats/ipf_dsk.h"
#include "formats/fs_unformatted.h"
#include "formats/fsblk_vec.h"
@ -168,6 +169,7 @@ void format_registration::add_pc_formats()
add_mfm_containers();
add(FLOPPY_PC_FORMAT);
add(FLOPPY_IPF_FORMAT);
}
void format_registration::add(floppy_format_type format)