Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/PL330_DMA/
DPL330_DMA_Instructions.cs67 decoderRoot.AddOpcode(0b00110001, 8, () => new DMAWFP(this, isPeripheralDriven: true)); in RegisterInstructions()
68 …decoderRoot.AddOpcode(0b00110000, 8, () => new DMAWFP(this, isPeripheralDriven: false, transaction… in RegisterInstructions()
69 …decoderRoot.AddOpcode(0b00110010, 8, () => new DMAWFP(this, isPeripheralDriven: false, transaction… in RegisterInstructions()
750 …public DMAWFP(PL330_DMA parent, bool isPeripheralDriven = false, Channel.ChannelRequestType transa… in DMAWFP() argument
752 this.isPeripheralDriven = isPeripheralDriven; in DMAWFP()
772 if(isPeripheralDriven) in ExecuteInner()
797 private readonly bool isPeripheralDriven; field in Antmicro.Renode.Peripherals.DMA.PL330_DMA.DMAWFP