summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/all.cpp
diff options
context:
space:
mode:
author fulivi <fulivi@users.noreply.github.com>2023-05-14 22:24:48 +0200
committer GitHub <noreply@github.com>2023-05-15 06:24:48 +1000
commit57b08b837418c9f17ec2cd91247dea9bc0a44446 (patch)
tree67e4d0f61263703b59d19668afa6ff936151d567 /src/lib/formats/all.cpp
parentfdcd90da80120a6623cf3a8c1cef1c07eb398f3f (diff)
formats/fs_hp98x5.cpp: Added filesystem handlers for HP9825, HP9831 and HP9845. (#11175)
Diffstat (limited to 'src/lib/formats/all.cpp')
-rw-r--r--src/lib/formats/all.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/formats/all.cpp b/src/lib/formats/all.cpp
index 9519b323686..efc78e53911 100644
--- a/src/lib/formats/all.cpp
+++ b/src/lib/formats/all.cpp
@@ -744,6 +744,10 @@
#include "fs_isis.h"
#endif
+#ifdef HAS_FORMATS_FS_HP98X5
+#include "fs_hp98x5.h"
+#endif
+
void mame_formats_full_list(mame_formats_enumerator &en)
{
en.category("Generic");
@@ -902,6 +906,11 @@ void mame_formats_full_list(mame_formats_enumerator &en)
#ifdef HAS_FORMATS_FS_HPLIF
en.add(fs::HPLIF); // fs_lif.h
#endif
+#ifdef HAS_FORMATS_FS_HP98X5
+ en.add(fs::HP9825);
+ en.add(fs::HP9831);
+ en.add(fs::HP9845);
+#endif
en.category("Applix");
#ifdef HAS_FORMATS_APPLIX_DSK