diff options
author | 2025-01-12 10:27:13 -0600 | |
---|---|---|
committer | 2025-01-12 17:27:13 +0100 | |
commit | 9a06c424e0a900a1327ef1c52768bb6602f300fc (patch) | |
tree | e5f4748b0bfe3637efb2d22a5f943d21d6cef1c1 /src/lib/formats/all.cpp | |
parent | 43b23c15ecf5f29fb0622dbd31c64d950f0eba3f (diff) |
formats/h17disk.cpp: Add format for Heath hard-sectored formats (#13222)
* formats/h17disk.cpp: Add format for Heath hard-sectored formats
* fix compile error
* minor formatting changes
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r-- | src/lib/formats/all.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp index 80d5930e37b..bab86919cb7 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -320,6 +320,10 @@ #include "guab_dsk.h" #endif +#ifdef HAS_FORMATS_H17D_DSK +#include "h17disk.h" +#endif + #ifdef HAS_FORMATS_H8_CAS #include "h8_cas.h" #endif @@ -1530,4 +1534,9 @@ void mame_formats_full_list(mame_formats_enumerator &en) #ifdef HAS_FORMATS_X07_CAS en.add(x07_cassette_formats); // x07_cas.h #endif + + en.category("Heath"); +#ifdef HAS_FORMATS_H17D_DSK + en.add(FLOPPY_H17D_FORMAT); // h17disk.h +#endif } |