Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DRenesasRZG_MHU.cs44 foreach(var irq in softwareInterrupts) in Reset()
63 public GPIO SoftwareIRQ0 => softwareInterrupts[0];
64 public GPIO SoftwareIRQ1 => softwareInterrupts[1];
65 public GPIO SoftwareIRQ2 => softwareInterrupts[2];
66 public GPIO SoftwareIRQ3 => softwareInterrupts[3];
74 for(long i = 0; i < softwareInterrupts.Length; ++i) in BuildRegisterMap()
77 …BuildInterruptRegisters(registerMap, softwareInterrupts[i], offset + (long)Registers.SoftwareInter… in BuildRegisterMap()
140 … private readonly GPIO[] softwareInterrupts = {new GPIO(), new GPIO(), new GPIO(), new GPIO()}; field in Antmicro.Renode.Peripherals.Miscellaneous.RenesasRZG_MHU