]> Shamusworld >> Repos - apple2/blobdiff - src/apple2.h
Added VBL, fixed sound-on-write, added .bin disk support.
[apple2] / src / apple2.h
index 48d39ff3ca139db28bde98151ecac063f62f57eb..7696c5aa915fd4581921a8ee25162a8aff6039a2 100755 (executable)
@@ -1,12 +1,16 @@
-//\r
-// Apple 2 SDL Portable Apple Emulator\r
-//\r
-\r
-#include "types.h"\r
-\r
-enum { APPLE_TYPE_II, APPLE_TYPE_IIE, APPLE_TYPE_IIC };\r
-\r
-// Global variables (exported)\r
-\r
-extern uint8 ram[0x10000], rom[0x10000];               // RAM & ROM pointers\r
-extern uint8 appleType;\r
+//
+// Apple 2 SDL Portable Apple Emulator
+//
+
+#include <stdint.h>
+#include "floppy.h"
+
+enum { APPLE_TYPE_II, APPLE_TYPE_IIE, APPLE_TYPE_IIC };
+
+// Global variables (exported)
+
+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;