예제 #1
0
파일: Variable.cs 프로젝트: ajlopez/AjVars
 public Variable(int address, TypeValue typeValue, ByteMemory memory)
 {
     this.address = address;
     this.memory = memory;
     this.typeValue = typeValue;
     this.lastvalue = this.Value;
     this.memory.ChangedMemory += this.CheckNewValue;
 }
예제 #2
0
파일: Variable.cs 프로젝트: ajlopez/AjVars
 public static Variable MakeShortVariable(int address, ByteMemory memory)
 {
     return new Variable(address, ShortTypeValue.Instance, memory);
 }
예제 #3
0
파일: TypeValue.cs 프로젝트: ajlopez/AjVars
 public abstract void ToMemory(ByteMemory memory, int address, object obj);
예제 #4
0
파일: Variable.cs 프로젝트: ajlopez/AjVars
 public static Variable MakeIntegerVariable(int address, ByteMemory memory)
 {
     return new Variable(address, IntegerTypeValue.Instance, memory);
 }
예제 #5
0
파일: TypeValue.cs 프로젝트: ajlopez/AjVars
 public abstract object FromMemory(ByteMemory memory, int address);
예제 #6
0
 public override void ToMemory(ByteMemory memory, int address, object obj)
 {
     memory.SetBytes(address, this.ToBytes(obj));
 }
예제 #7
0
 public override object FromMemory(ByteMemory memory, int address)
 {
     return this.FromBytes(memory.GetBytes(address, this.Size));
 }
예제 #8
0
 public override void ToMemory(ByteMemory memory, int address, object obj)
 {
     memory.SetBit(address, (bool)obj);
 }
예제 #9
0
 public override object FromMemory(ByteMemory memory, int address)
 {
     return memory.GetBit(address);
 }