diff options
author | 2022-09-27 07:30:52 +0200 | |
---|---|---|
committer | 2022-09-28 17:44:09 +0200 | |
commit | f9870d6f020b55991aa1838bca70fd5379b0cefc (patch) | |
tree | 35151a060e18129481790f719e8cf029a0c00f03 /src/lib/formats/all.cpp | |
parent | eb4cbebb15aaa8e7a494570a6f9b295e647c56c1 (diff) |
ap2_dsk: Move the applesauce formats in their own file
as_dsk: Create a common base class, merge what is currently identical
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r-- | src/lib/formats/all.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp index 5bae7c54707..30a1e103fc2 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -104,6 +104,10 @@ #include "asst128_dsk.h" #endif +#ifdef HAS_FORMATS_AS_DSK +#include "as_dsk.h" +#endif + #ifdef HAS_FORMATS_ATARI_DSK #include "atari_dsk.h" #endif @@ -753,10 +757,12 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.add(FLOPPY_A216S_PRODOS_FORMAT); // ap2_dsk.h en.add(FLOPPY_RWTS18_FORMAT); // ap2_dsk.h en.add(FLOPPY_EDD_FORMAT); // ap2_dsk.h - en.add(FLOPPY_WOZ_FORMAT); // ap2_dsk.h - en.add(FLOPPY_MOOF_FORMAT); // ap2_dsk.h en.add(FLOPPY_NIB_FORMAT); // ap2_dsk.h #endif +#ifdef HAS_FORMATS_AS_DSK + en.add(FLOPPY_WOZ_FORMAT); // as_dsk.h + en.add(FLOPPY_MOOF_FORMAT); // as_dsk.h +#endif #ifdef HAS_FORMATS_AIM_DSK en.add(FLOPPY_AIM_FORMAT); // aim_dsk.h #endif |