Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DSTM32DMA.cs251 memoryIncrementAddress = false; in Reset()
277 … = direction == Direction.PeripheralToMemory ? peripheralIncrementAddress : memoryIncrementAddress; in CreateRequest()
278 … = direction == Direction.MemoryToPeripheral ? peripheralIncrementAddress : memoryIncrementAddress; in CreateRequest()
333 returnValue |= memoryIncrementAddress ? (1u << 10) : 0u; in HandleConfigurationRead()
349 memoryIncrementAddress = (value & (1 << 10)) != 0; in HandleConfigurationWrite()
410 private bool memoryIncrementAddress; field in Antmicro.Renode.Peripherals.DMA.STM32DMA.Stream