summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/msx_dsk.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-05-06 19:42:26 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-05-06 19:42:26 +0000
commit62d841c2703286b34983eb8dae174ecbf2c82c5f (patch)
treed97a50172e47372637a155978f3096618da8c275 /src/lib/formats/msx_dsk.c
parent987909ff31107893c4b748d86d97619db48c4b47 (diff)
Moved format handling and all formats to separate library [Miodrag Milanovic]
Diffstat (limited to 'src/lib/formats/msx_dsk.c')
-rw-r--r--src/lib/formats/msx_dsk.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/formats/msx_dsk.c b/src/lib/formats/msx_dsk.c
new file mode 100644
index 00000000000..17cf288ef2b
--- /dev/null
+++ b/src/lib/formats/msx_dsk.c
@@ -0,0 +1,25 @@
+/*********************************************************************
+
+ formats/msx_dsk.c
+
+ MSX disk images
+
+*********************************************************************/
+
+#include "msx_dsk.h"
+#include "formats/basicdsk.h"
+
+FLOPPY_OPTIONS_START(msx)
+ FLOPPY_OPTION(msx, "dsk", "MSX SS", basicdsk_identify_default, basicdsk_construct_default, NULL,
+ HEADS([1])
+ TRACKS([80])
+ SECTORS([9])
+ SECTOR_LENGTH([512])
+ FIRST_SECTOR_ID([1]))
+ FLOPPY_OPTION(msx, "dsk", "MSX DS", basicdsk_identify_default, basicdsk_construct_default, NULL,
+ HEADS([2])
+ TRACKS([80])
+ SECTORS([9])
+ SECTOR_LENGTH([512])
+ FIRST_SECTOR_ID([1]))
+FLOPPY_OPTIONS_END