added ppu
This commit is contained in:
parent
1af2c37b70
commit
19d138fb5f
6 changed files with 216 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue