]> Shamusworld >> Repos - apple2/blob - src/apple2.h
7696c5aa915fd4581921a8ee25162a8aff6039a2
[apple2] / src / apple2.h
1 //
2 // Apple 2 SDL Portable Apple Emulator
3 //
4
5 #include <stdint.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_t ram[0x10000], rom[0x10000];              // RAM & ROM pointers
13 extern uint8_t ram2[0x10000];                                   // Auxillary RAM
14 extern uint8_t appleType;
15 extern FloppyDrive floppyDrive;
16 extern bool dhires;