diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-27 21:15:03 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-27 21:15:03 +1100 |
commit | d24ee5f20483aee9acbec9deb0dcc833d78cae49 (patch) | |
tree | 04ed06b7c0f4e475b9f5f5f1e3da2c044d6b5849 /src/cpu/6502.h | |
parent | c6da616d018ecfc5a26686e88ab520b54b7fa6ed (diff) |
actually fixed build this time
Diffstat (limited to 'src/cpu/6502.h')
-rw-r--r-- | src/cpu/6502.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cpu/6502.h b/src/cpu/6502.h index 093fc3c..14d65f3 100644 --- a/src/cpu/6502.h +++ b/src/cpu/6502.h @@ -7,11 +7,6 @@ #include"stdio.h" #include"core.h" -byte acc, X, Y, P, S = 0x00; -address PC = 0x0000; -byte* Memory; -byte* ROM; - // FLAGS #define flag_N 0x80 // Negative #define flag_V 0x40 // Overflow |