public Register(VirtualMachine VM, Int32 Value)
     : this(VM, RegisterType.Value)
 {
     IntValue = Value;
 }
 public Register(VirtualMachine VM, RegisterType Type)
     : this(VM)
 {
     this.Type = Type;
 }
 public Register(VirtualMachine VM)
 {
     this.VM = VM;
 }