public IntFlagsRegister(Interrupts interrupts, Memory memory, UInt32 address) : base(memory, address, true, true) { this.interrupts = interrupts; this.address = address; }
public GbaTimer(Timers timers, Interrupts interrupts, int timerNumber) { this.timers = timers; this.interrupts = interrupts; this.timerNumber = timerNumber; }