public void RaiseEvent(CpuEventArgs e)
 {
     if (InstructionRan != null)
     {
         InstructionRan(this, e);
     }
 }
Esempio n. 2
0
 void broadCaster_InstructionRan(object sender, CpuEventArgs e)
 {
     if (InstructionRan != null)
         InstructionRan(this, e);
 }