diff options
Diffstat (limited to 'headers/6502.h')
-rw-r--r-- | headers/6502.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/headers/6502.h b/headers/6502.h index ea92479..0835f36 100644 --- a/headers/6502.h +++ b/headers/6502.h @@ -5,7 +5,7 @@ typedef unsigned char byte; typedef unsigned short address; byte acc, X, Y, P, S = 0x00; address PC = 0x0000; -byte Memory[4096]; // TO DO. Add expansion capability to memory. +byte* Memory; // TO DO. Add expansion capability to memory. // FLAGS #define flag_N 0x80 // Negative |