Home
last modified time | relevance | path

Searched refs:ByteArrayValue (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DRegisterValue.cs17 public byte[] ByteArrayValue { get; private set; } property
34 if(ByteArrayValue != null) in GetBytes()
36 return ByteArrayValue; in GetBytes()
63 return new RegisterValue { RawValue = (ulong)v, ByteArrayValue = null, Bits = 64 }; in operator RegisterValue()
68 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 64 }; in operator RegisterValue()
73 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 32 }; in operator RegisterValue()
78 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 16 }; in operator RegisterValue()
83 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 8 }; in operator RegisterValue()
88 …return new RegisterValue { RawValue = default(ulong), ByteArrayValue = v, Bits = (uint)v.Length * … in operator RegisterValue()
93 if(v.ByteArrayValue != null) in operator ulong()
[all …]