Creating new accessors

This commit is contained in:
SergioMartin86 2024-02-24 06:58:23 +00:00
parent 4844904217
commit ba38f85b03
1 changed files with 9 additions and 0 deletions

View File

@ -235,6 +235,15 @@ class Emu
uint8_t get_ppu2000() const { return emu.ppu.w2000; } uint8_t get_ppu2000() const { return emu.ppu.w2000; }
void get_regs(unsigned int *dest) const
{
dest[0] = emu.r.a;
dest[1] = emu.r.x;
dest[2] = emu.r.y;
dest[3] = emu.r.sp;
dest[4] = emu.r.pc;
dest[5] = emu.r.status;
}
private: private:
frame_t *frame_; frame_t *frame_;