Example #1
0
 public BcuState(BcuState that) : base(that)
 {
     pc  = that.pc;
     npc = that.npc;
 }
Example #2
0
 public virtual void copy(BcuState that)
 {
     base.copy(that);
     pc  = that.pc;
     npc = that.npc;
 }