Removed comments

This commit is contained in:
Darkress
2023-06-18 19:25:30 +02:00
parent 791201c884
commit bc53450507
2 changed files with 1 additions and 2 deletions

View File

@@ -8,7 +8,6 @@ public class Interrupt
}
public static boolean checkTimerInterruptConditions() {
boolean timerInterruptEnabled = (Memory.getRegister(0x0B) & 0x20) == 0x20;
//boolean timerOverflowInterruptFlag = (Memory.getRegister(0x0B) & 0x04) == 0x04;
return globalInterruptEnabled() && timerInterruptEnabled;
}
}