Searched refs:dataLength (Results 1 – 2 of 2) sorted by relevance
/Renode-v1.15.3-c57714d/src/Plugins/SystemCPlugin/Peripheral/ |
D | SystemCPeripheral.cs | 48 …public RenodeMessage(RenodeAction actionId, byte dataLength, byte connectionIndex, ulong address, … in RenodeMessage() 51 DataLength = dataLength; in RenodeMessage() 205 ulong ReadDirect(byte dataLength, long offset, byte connectionIndex); in ReadDirect() argument 206 void WriteDirect(byte dataLength, long offset, ulong value, byte connectionIndex); in WriteDirect() argument 318 public ulong ReadDirect(byte dataLength, long offset, byte connectionIndex) in ReadDirect() argument 320 return Read(dataLength, offset, connectionIndex); in ReadDirect() 323 public void WriteDirect(byte dataLength, long offset, ulong value, byte connectionIndex) in WriteDirect() argument 325 Write(dataLength, offset, value, connectionIndex); in WriteDirect() 371 private ulong Read(byte dataLength, long offset, byte connectionIndex = 0) in Read() argument 373 return ReadInternal(RenodeAction.Read, dataLength, offset, connectionIndex); in Read() [all …]
|
D | SystemCCPU.cs | 96 public ulong ReadDirect(byte dataLength, long offset, byte connectionIndex) in ReadDirect() argument 98 return systemCPeripheral.ReadDirect(dataLength, offset, connectionIndex); in ReadDirect() 101 public void WriteDirect(byte dataLength, long offset, ulong value, byte connectionIndex) in WriteDirect() argument 103 systemCPeripheral.WriteDirect(dataLength, offset, value, connectionIndex); in WriteDirect()
|