From f86d973b2f5318b5e761e2f682c2aa57d61eb0d6 Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Thu, 27 Apr 2023 11:19:33 +1000 Subject: Major progress on interpreter --- headers/6502.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'headers/6502.h') 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 -- cgit v1.2.3