summaryrefslogtreecommitdiff
path: root/src/cpu/6502.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/6502.c')
-rw-r--r--src/cpu/6502.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/6502.c b/src/cpu/6502.c
index a1d3a38..17796cf 100644
--- a/src/cpu/6502.c
+++ b/src/cpu/6502.c
@@ -6,7 +6,6 @@
byte acc, X, Y, P, S = 0x00;
address PC = 0x0000;
byte* Memory;
-byte* ROM;
byte getFlag(byte flag) {
return ((P & flag) == flag) ? 1 : 0;
@@ -90,4 +89,4 @@ byte GetStack() {
void SetStack(byte z) {
SetMemory(0x01FF - S, z);
-} \ No newline at end of file
+}