Ejemplo n.º 1
0
 public ConstValue(BitValue value)
 {
     this.Value = value;
 }
Ejemplo n.º 2
0
 public virtual void SetValue(BitValue value)
 {
     this.value = value;
 }
Ejemplo n.º 3
0
 public BitValue(BitValue another) : this(another.value.Length)
 {
     Array.Copy(another.value, this.value, another.value.Length);
 }
Ejemplo n.º 4
0
 public Register(ProcessorModel parent)
 {
     this.Parent = parent;
     value       = new BitValue(new bool[ProcessorModel.BIT_LENGTH]);
 }