blob: bee72f9dfaca6b1255bc59650176319d175e40ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*********************************************************************
ap2_dsk.h
Apple II disk images
*********************************************************************/
#ifndef AP2_DISK_H
#define AP2_DISK_H
#include "flopimg.h"
/***************************************************************************
Constants
***************************************************************************/
#define APPLE2_NIBBLE_SIZE 416
#define APPLE2_SMALL_NIBBLE_SIZE 374
#define APPLE2_TRACK_COUNT 35
#define APPLE2_SECTOR_COUNT 16
#define APPLE2_SECTOR_SIZE 256
/**************************************************************************/
FLOPPY_OPTIONS_EXTERN(apple2);
#endif /* AP2_DISK_H */
|