added ppu

This commit is contained in:
Lauchmelder 2021-10-23 19:30:02 +02:00
parent 1af2c37b70
commit 19d138fb5f
6 changed files with 216 additions and 3 deletions

View file

@ -4,6 +4,7 @@
#include "types.h"
struct CPU;
struct PPU;
struct Cartridge;
// Main communication path for devices and memory in the NES
@ -13,6 +14,7 @@ struct Bus
Byte* io;
struct CPU* cpu;
struct PPU* ppu;
struct Cartridge* cartridge;
};