summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/g64_dsk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/g64_dsk.h')
-rw-r--r--src/lib/formats/g64_dsk.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/lib/formats/g64_dsk.h b/src/lib/formats/g64_dsk.h
index b7d32c8ed6d..f7f06548ede 100644
--- a/src/lib/formats/g64_dsk.h
+++ b/src/lib/formats/g64_dsk.h
@@ -30,15 +30,17 @@ public:
protected:
enum
{
- SIGNATURE = 0x0,
- VERSION = 0x8,
- TRACK_COUNT = 0x9,
- MAX_TRACK_SIZE = 0xa,
- TRACK_OFFSET = 0xc,
- SPEED_ZONE = 0x15c,
- MASTERING = 0x2ac,
- TRACK_DATA = 0x2ac,
- TRACK_LENGTH = 0x1ef8
+ POS_SIGNATURE = 0x0,
+ POS_VERSION = 0x8,
+ POS_TRACK_COUNT = 0x9,
+ POS_MAX_TRACK_SIZE = 0xa,
+ POS_TRACK_OFFSET = 0xc
+ };
+
+ enum
+ {
+ TRACK_LENGTH = 0x1ef8,
+ TRACK_COUNT = 84
};
static const UINT32 c1541_cell_size[];