diff options
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 efc78e53911..02f5b636cf5 100644 --- a/src/lib/formats/all.cpp +++ b/src/lib/formats/all.cpp @@ -452,6 +452,10 @@ #include "mz_cas.h" #endif +#ifdef HAS_FORMATS_NABUPC_DSK +#include "nabupc_dsk.h" +#endif + #ifdef HAS_FORMATS_NANOS_DSK #include "nanos_dsk.h" #endif @@ -1225,6 +1229,11 @@ void mame_formats_full_list(mame_formats_enumerator &en) en.add(FLOPPY_MTX_FORMAT); // mtx_dsk.h #endif + en.category("NABU PC"); +#ifdef HAS_FORMATS_NABUPC_DSK + en.add(FLOPPY_NABUPC_FORMAT); // nabupc_dsk.h +#endif + en.category("Nanos"); #ifdef HAS_FORMATS_NANOS_DSK en.add(FLOPPY_NANOS_FORMAT); // nanos_dsk.h |