diff options
author | 2015-04-21 23:52:22 +0300 | |
---|---|---|
committer | 2015-04-21 23:52:22 +0300 | |
commit | 67d09b16e9c3bfdbbbd5badebb34ce1dd2aba01a (patch) | |
tree | 80bf2f449bd8090fac2260e5cde1ab969c381fc6 /src/lib/formats/c4040_dsk.c | |
parent | 2dc5e399ed3fc2a1622277195da5d8ec5bc8eef2 (diff) |
(MESS) c3040: Disk format WIP. (nw)
Diffstat (limited to 'src/lib/formats/c4040_dsk.c')
-rw-r--r-- | src/lib/formats/c4040_dsk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/formats/c4040_dsk.c b/src/lib/formats/c4040_dsk.c index da3ac905693..4def7e0c581 100644 --- a/src/lib/formats/c4040_dsk.c +++ b/src/lib/formats/c4040_dsk.c @@ -50,7 +50,7 @@ floppy_image_format_t::desc_e* c4040_format::get_sector_desc(const format &f, in { static floppy_image_format_t::desc_e desc[] = { /* 00 */ { SECTOR_LOOP_START, 0, -1 }, - /* 01 */ { RAWBYTE, 0xff, 5 }, + /* 01 */ { SYNC_GCR5, 4 }, /* 02 */ { GCR5, 0x08, 1 }, /* 03 */ { CRC, 1 }, /* 04 */ { CRC_CBM_START, 1 }, @@ -60,7 +60,7 @@ floppy_image_format_t::desc_e* c4040_format::get_sector_desc(const format &f, in /* 08 */ { GCR5, id1, 1 }, /* 09 */ { CRC_END, 1 }, /* 10 */ { GCR5, 0x00, f.gap_1 }, - /* 11 */ { RAWBYTE, 0xff, 5 }, + /* 11 */ { SYNC_GCR5, 4 }, /* 12 */ { GCR5, 0x07, 1 }, /* 13 */ { CRC_CBM_START, 2 }, /* 14 */ { SECTOR_DATA_GCR5, -1 }, |