Exemplo n.º 1
0
 public Register16(Register8 high, Register8 low)
 {
     Name = high.Name + low.Name;
     High = high;
     Low  = low;
 }
Exemplo n.º 2
0
 public Register16(string name)
 {
     Name = name;
     High = new Register8($"{name}(HIGH)");
     Low  = new Register8($"{name}(LOW)");
 }