Example #1
0
 public Registro(string name, string data)
 {
     Nome  = name;
     Dato  = data;
     _busB = BusB.GetInstance();
     _alu  = ALU.GetInstance();
 }
Example #2
0
 public AluStato()
 {
     _alu      = ALU.GetInstance();
     Operation = _alu.Operation;
     OperandA  = _alu.OperandA;
     OperandB  = _alu.OperandB;
     Risultato = _alu.Risultato;
     NFlag     = _alu.NFlag;
     ZFlag     = _alu.ZFlag;
 }