implement proper support for POWCNT1.

fixes #260
This commit is contained in:
StapleButter
2018-12-18 17:04:42 +01:00
parent 1b64e87115
commit dd30b417b8
8 changed files with 140 additions and 50 deletions

View File

@ -29,6 +29,7 @@ public:
void DoSavestate(Savestate* file);
void SetEnabled(bool enable) { Enabled = enable; }
void SetFramebuffer(u32* buf);
u8 Read8(u32 addr);
@ -64,6 +65,7 @@ public:
private:
u32 Num;
bool Enabled;
u32* Framebuffer;
u16 DispFIFO[16];