summaryrefslogtreecommitdiff
path: root/headers/apple.h
diff options
context:
space:
mode:
Diffstat (limited to 'headers/apple.h')
-rw-r--r--headers/apple.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/headers/apple.h b/headers/apple.h
deleted file mode 100644
index 55ddaa3..0000000
--- a/headers/apple.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#define MEMORY_SIZE 4096
-
-void AppleOn(){
- Memory = calloc(MEMORY_SIZE, sizeof(byte));
- initInstructionTable();
-}
-
-void AppleReset(){
- acc = 0; X = 0; Y = 0; P = 0; S = 0;
- idata.cycles = 0; idata.length = 0; idata.add = 0; idata.value = 0;
- free(Memory);
- Memory = calloc(MEMORY_SIZE, sizeof(byte));
-}
-
-