Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMXIC_MX66UM1G45G.cs449 switch(currentOperation.ExecutionAddress) in WriteRegister()
491 … this.Log(LogLevel.Warning, "Unrecognized CR2 address: {0:X8}", currentOperation.ExecutionAddress); in WriteRegister()
531 switch (currentOperation.ExecutionAddress) in ReadRegister()
575 … this.Log(LogLevel.Warning, "Unrecognized CR2 address: {0:X8}", currentOperation.ExecutionAddress); in ReadRegister()
596 if(currentOperation.ExecutionAddress >= underlyingMemory.Size) in HandleNoDataCommand()
598 …cause current address 0x{0:X} exceeds configured memory size.", currentOperation.ExecutionAddress); in HandleNoDataCommand()
635 EraseFragment(currentOperation.ExecutionAddress, SegmentSize); in EraseSector()
640 EraseFragment(currentOperation.ExecutionAddress, 4.KB()); in EraseSubsector4K()
666 …if(currentOperation.ExecutionAddress + currentOperation.CommandBytesHandled > underlyingMemory.Siz… in WriteToMemory()
668 …ess 0x{0:X} because it is bigger than configured memory size.", currentOperation.ExecutionAddress); in WriteToMemory()
[all …]
DGenericSpiFlash.cs157 position = currentOperation.ExecutionAddress + currentOperation.CommandBytesHandled; in TryVerifyWriteToMemory()
160 …ess 0x{0:X} because it is bigger than configured memory size.", currentOperation.ExecutionAddress); in TryVerifyWriteToMemory()
224 … this.Log(LogLevel.Noisy, "Address accumulated: 0x{0:X}", currentOperation.ExecutionAddress); in AccumulateAddressBytes()
480 if(currentOperation.ExecutionAddress >= SFDPSignature.Length) in GetSFDPByte()
482 …ried to read SFDP signature byte out of range at position {0}", currentOperation.ExecutionAddress); in GetSFDPByte()
486 var output = SFDPSignature[currentOperation.ExecutionAddress]; in GetSFDPByte()
487 …currentOperation.ExecutionAddress = (currentOperation.ExecutionAddress + 1) % (uint)SFDPSignature.… in GetSFDPByte()
577 if(currentOperation.ExecutionAddress >= underlyingMemory.Size) in HandleNoDataCommand()
579 …cause current address 0x{0:X} exceeds configured memory size.", currentOperation.ExecutionAddress); in HandleNoDataCommand()
645 var position = segmentSize * (currentOperation.ExecutionAddress / segmentSize); in EraseSegment()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/NORFlash/
DDecodedOperation.cs18 public uint ExecutionAddress; field
50 ExecutionAddress = BitHelper.ToUInt32(AddressBytes, 0, AddressLength, false); in TryAccumulateAddress()