GPU: Hook up vblank interrupt

This commit is contained in:
Connor McLaughlin
2019-09-18 00:22:41 +10:00
parent a84b3d7a2b
commit 0a8bce8936
6 changed files with 14 additions and 14 deletions

View File

@ -48,7 +48,7 @@ public:
private:
static constexpr u32 REGISTER_WRITE_MASK = (u32(1) << NUM_IRQS) - 1;
static constexpr u32 DEFAULT_INTERRUPT_MASK = (u32(1) << NUM_IRQS) - 1;
static constexpr u32 DEFAULT_INTERRUPT_MASK = 0; //(u32(1) << NUM_IRQS) - 1;
void UpdateCPUInterruptRequest();