Add BackgroundLayer to PPU, Create Loggable class

This commit is contained in:
scawful
2023-08-20 16:15:18 -04:00
parent 7448f80119
commit ac7d8b6af9
6 changed files with 92 additions and 27 deletions

View File

@@ -251,11 +251,6 @@ void SNES::Init(ROM& rom) {
// Misc
memory_.WriteByte(0x2133, 0x00); // SETINI
// Load ROM data into memory
// TODO: Load memory based on memory mapping and ROM format.
memory_.SetMemory(rom.vector());
// Initialize other private member variables
running_ = true;
scanline = 0;
}