implemented background tile fetching

This commit is contained in:
Lauchmelder 2022-03-02 14:59:42 +01:00
parent f4e6198a99
commit e7b78f281f
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
9 changed files with 474 additions and 131 deletions

View file

@ -45,6 +45,8 @@ public:
*/
uint8_t Tick();
void PPUTick();
/**
* @brief Advance the emulator by one CPU instruction.
*/
@ -87,4 +89,6 @@ private:
PPU ppu;
Cartridge cartridge;
ControllerPort controllerPort;
uint8_t ppuClock = 0;
};