Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Extensions/
DMemoryDumpExtensions.cs78 … var chunks = (int)((size - offset + MaxHexRecordDataLength - 1) / MaxHexRecordDataLength - 1); in DumpHEX()
84 var lastChunkSize = (size - offset) % MaxHexRecordDataLength; in DumpHEX()
85 lastChunkSize = lastChunkSize == 0 ? MaxHexRecordDataLength : lastChunkSize; in DumpHEX()
102 …seAddress, ref ulong extendedAddress, int chunk, ICPU context, ulong size = MaxHexRecordDataLength) in WriteHexMemoryChunk()
104 var readOffset = offset + (ulong)chunk * MaxHexRecordDataLength; in WriteHexMemoryChunk()
164 private const ulong MaxHexRecordDataLength = Byte.MaxValue; field in Antmicro.Renode.Core.Extensions.MemoryDumpExtensions