Add CMP, COP, DEC, EOR, update SNES and Memory

This commit is contained in:
scawful
2023-08-20 15:39:22 -04:00
parent 1795f8f3bf
commit 7448f80119
6 changed files with 617 additions and 187 deletions

View File

@@ -62,6 +62,8 @@ class SNES : public DMA {
SNES() = default;
~SNES() = default;
ROMInfo ReadRomHeader(uint32_t offset);
// Initialization
void Init(ROM& rom);
@@ -110,6 +112,7 @@ class SNES : public DMA {
APU apu{memory_};
// Helper classes
ROMInfo rom_info_;
Debugger debugger;
std::vector<uint8_t> rom_data;