Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMPFS_QSPI.cs55 .WithValueField(16, 9, out commandBytes, name: "CMDBYTES") in MPFS_QSPI()
245 if(commandBytes.Value != totalBytes) in HandleByte()
248 if(commandBytes.Value == 1) in HandleByte()
259 if(bytesSent < (int)commandBytes.Value) in HandleByte()
263 if(bytesSent == (int)commandBytes.Value) in HandleByte()
348 private readonly IValueRegisterField commandBytes; field in Antmicro.Renode.Peripherals.SPI.MPFS_QSPI
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DATAPI.cs145 commandBytes[cmdCount] = (byte)value; in GatherPacket()
146 commandBytes[cmdCount + 1] = (byte)(value >> 8); in GatherPacket()
176 … this.Log(LogLevel.Debug, "Finished gathering command with OperationCode {0:x}", commandBytes[0]); in GatherPacket()
178 var receivedCommand = commandBytes.Take(cmdLength).ToArray(); in GatherPacket()
255 private readonly byte[] commandBytes = new byte[16]; field in Antmicro.Renode.Peripherals.ATAPI.ATAPI