Skip to content
Snippets Groups Projects
Verified Commit 5292eb5d authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

chore: added serial int testing

parent 2a4a2977
No related branches found
No related tags found
1 merge request!16Support for Game Boy Color (CGB) 😎🖍️
Pipeline #2704 passed
......@@ -131,6 +131,7 @@ impl Cpu {
&& (((self.mmu.ie & 0x01 == 0x01) && self.mmu.ppu().int_vblank())
|| ((self.mmu.ie & 0x02 == 0x02) && self.mmu.ppu().int_stat())
|| ((self.mmu.ie & 0x04 == 0x04) && self.mmu.timer().int_tima())
|| ((self.mmu.ie & 0x08 == 0x08) && self.mmu.serial().int_serial())
|| ((self.mmu.ie & 0x10 == 0x10) && self.mmu.pad().int_pad()))
{
self.halted = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment