Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DMAX32650_GPIO.cs108 var pendingInterrupt = false; in UpdateInterrupts()
112 pendingInterrupt |= interruptEnabled[i].Value && interruptStatus[i].Value; in UpdateInterrupts()
115 IRQ.Set(pendingInterrupt); in UpdateInterrupts()
DARM_AHB_GPIO.cs159 var pendingInterrupt = interruptEnabled[i] && interruptStatus[i]; in UpdateInterrupts()
162 DedicatedIRQs[i].Set(pendingInterrupt); in UpdateInterrupts()
166 pendingCombinedInterrupt |= pendingInterrupt; in UpdateInterrupts()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/MSP430X/
DMSP430X.cs65 pendingInterrupt.Clear(); in Reset()
72 pendingInterrupt.Add(number); in OnGPIO()
76 pendingInterrupt.Remove(number); in OnGPIO()
247 … if(statusRegister.HasFlag(StatusFlags.GeneralInterruptEnable) && pendingInterrupt.Count > 0) in ExecuteInstructions()
249 HandleInterrupt(pendingInterrupt.Min); in ExecuteInstructions()
1521 private readonly SortedSet<int> pendingInterrupt = new SortedSet<int>(); field in Antmicro.Renode.Peripherals.CPU.MSP430X
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm-M/
DNVIC.cs538 var pendingInterrupt = SpuriousInterrupt; in OnGPIO()
550 pendingInterrupt = FindPendingInterrupt(); in OnGPIO()
552 if(pendingInterrupt != SpuriousInterrupt && value) in OnGPIO()