diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-04-27 11:19:33 +1000 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-04-27 11:19:33 +1000 |
commit | f86d973b2f5318b5e761e2f682c2aa57d61eb0d6 (patch) | |
tree | 1563496942ab0b09ed0ee1e2b549ce78a991ebef /headers/6502.h | |
parent | 83e8a4494741e6257b18267a58fe8ae342e3229f (diff) |
Major progress on interpreter
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 |