Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMXIC_MX66UM1G45G.cs360 currentOperation.CommandBytesHandled--; in HandleCommand()
369 if(currentOperation.CommandBytesHandled < deviceData.Length) in HandleCommand()
371 result = deviceData[currentOperation.CommandBytesHandled]; in HandleCommand()
408 currentOperation.CommandBytesHandled++; in HandleCommand()
427 if((currentOperation.CommandBytesHandled) >= 2) in WriteRegister()
433 …hShifted(ref temporaryNonVolatileConfiguration, data, currentOperation.CommandBytesHandled * 8, 8); in WriteRegister()
434 if(currentOperation.CommandBytesHandled == 1) in WriteRegister()
521 if((currentOperation.CommandBytesHandled) < 2) in ReadRegister()
523 …per.GetValue(nonVolatileConfigurationRegister.Read(), currentOperation.CommandBytesHandled * 8, 8); in ReadRegister()
666 …if(currentOperation.ExecutionAddress + currentOperation.CommandBytesHandled > underlyingMemory.Siz… in WriteToMemory()
[all …]
DGenericSpiFlash.cs157 position = currentOperation.ExecutionAddress + currentOperation.CommandBytesHandled; in TryVerifyWriteToMemory()
439 if(currentOperation.CommandBytesHandled < deviceData.Length) in HandleCommand()
441 result = deviceData[currentOperation.CommandBytesHandled]; in HandleCommand()
473 currentOperation.CommandBytesHandled++; in HandleCommand()
505 if((currentOperation.CommandBytesHandled) >= 2) in WriteRegister()
510 …r.UpdateWithShifted(ref temporaryConfiguration, data, currentOperation.CommandBytesHandled * 8, 8); in WriteRegister()
511 if(currentOperation.CommandBytesHandled == 1) in WriteRegister()
525 currentOperation.CommandBytesHandled--; in WriteRegister()
553 if((currentOperation.CommandBytesHandled) < 2) in ReadRegister()
556 … return (byte)BitHelper.GetValue(sourceReg.Read(), currentOperation.CommandBytesHandled * 8, 8); in ReadRegister()
[all …]
DGigaDevice_GD25LQ.cs159 if(currentOperation.CommandBytesHandled < deviceID.Length) in HandleCommand()
161 result = deviceID[currentOperation.CommandBytesHandled]; in HandleCommand()
189 currentOperation.CommandBytesHandled++; in HandleCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/NORFlash/
DDecodedOperation.cs19 public int CommandBytesHandled; field