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