]> Shamusworld >> Repos - apple2/blobdiff - src/apple2.h
Added VBL, fixed sound-on-write, added .bin disk support.
[apple2] / src / apple2.h
index cff8eedce4537f1a212014aace7affeba38b27f2..7696c5aa915fd4581921a8ee25162a8aff6039a2 100755 (executable)
@@ -2,11 +2,15 @@
 // Apple 2 SDL Portable Apple Emulator
 //
 
-#include "types.h"
+#include <stdint.h>
+#include "floppy.h"
 
 enum { APPLE_TYPE_II, APPLE_TYPE_IIE, APPLE_TYPE_IIC };
 
 // Global variables (exported)
 
-extern uint8 ram[0x10000], rom[0x10000];               // RAM & ROM pointers
-extern uint8 appleType;
+extern uint8_t ram[0x10000], rom[0x10000];             // RAM & ROM pointers
+extern uint8_t ram2[0x10000];                                  // Auxillary RAM
+extern uint8_t appleType;
+extern FloppyDrive floppyDrive;
+extern bool dhires;