From a11980fe90fe62588fdf8103d9ef418283b3fd27 Mon Sep 17 00:00:00 2001 From: alekseiplusplus Date: Sat, 5 Aug 2023 05:32:54 +1000 Subject: major refactor; doesn't compile (see ToDo) --- src/cpu/6502.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/cpu/6502.h') diff --git a/src/cpu/6502.h b/src/cpu/6502.h index c455e57..093fc3c 100644 --- a/src/cpu/6502.h +++ b/src/cpu/6502.h @@ -1,9 +1,10 @@ // 6502.h // Main elements of the 6502 CPU -#ifndef CPU_6502_H -#define CPU_6502_H +#ifndef CPU_H +#define CPU_H +#include"stdio.h" #include"core.h" byte acc, X, Y, P, S = 0x00; -- cgit v1.2.3