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