Example #1
0
 internal static void Reset()
 {
     mmu        = new Memory();
     cpu        = new Cpu();
     joypad     = new Joypad();
     interrupts = new Interrupts();
 }
Example #2
0
 static Gameboy()
 {
     mmu        = new Memory();
     cpu        = new Cpu();
     joypad     = new Joypad();
     interrupts = new Interrupts();
 }