]> Shamusworld >> Repos - apple2/blob - src/apple2.h
65fae5cd68f0cd24f25e883ffde6ee9d81907d4c
[apple2] / src / apple2.h
1 //
2 // Apple 2 SDL Portable Apple Emulator
3 //
4
5 #include "types.h"
6 #include "floppy.h"
7
8 enum { APPLE_TYPE_II, APPLE_TYPE_IIE, APPLE_TYPE_IIC };
9
10 // Global variables (exported)
11
12 extern uint8 ram[0x10000], rom[0x10000];                // RAM & ROM pointers
13 extern uint8 appleType;
14 extern FloppyDrive floppyDrive;