Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DTegraDma.cs125 apbIsSource = false; in Reset()
210 apbIsSource = ((1 << 28) & value) == 0; in HandleControlWrite()
224 var sourceAddress = apbIsSource ? apbStartingAddress : ahbStartingAddress; in HandleControlWrite()
225 var destinationAddress = apbIsSource ? ahbStartingAddress : apbStartingAddress; in HandleControlWrite()
226 var sourceTransferType = apbIsSource ? apbTransferType : ahbTransferType; in HandleControlWrite()
227 var destinationTransferType = apbIsSource ? ahbTransferType : apbTransferType; in HandleControlWrite()
255 private bool apbIsSource; field in Antmicro.Renode.Peripherals.DMA.TegraDma.Channel