Use a more modern and clean paradigm for read/write handlers

asdasd
This commit is contained in:
SimoneN64
2023-11-14 12:44:08 +01:00
parent 091557478a
commit 25cfd49e64
12 changed files with 383 additions and 200 deletions

View File

@@ -98,7 +98,7 @@ private:
};
u8 Read8(u64 addr) {
return mem.Read8(regs, addr);
return mem.Read<u8>(regs, addr);
}
std::vector<u8> Serialize() override { return {}; }