Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/IRQControllers/
DAIC.cs42 …if (CurrentIRQ.HasValue && CurrentIRQ.Value != -1 && GetPriority(number) > GetPriority(CurrentIRQ.… in OnGPIO()
66 if (CurrentIRQ.HasValue) in ReadDoubleWord()
68 … nestedInterruptStack.Push(Tuple.Create(CurrentIRQ.Value, (int)GetPriority(CurrentIRQ.Value))); in ReadDoubleWord()
69 … BitHelper.SetBit(ref interruptPendingRegister, (byte)CurrentIRQ.Value, true); in ReadDoubleWord()
77 CurrentIRQ = irq.Value; in ReadDoubleWord()
82CurrentIRQ = -1; // hack - there is no irq, but spourius irq handler is called in ReadDoubleWord()
90 if (CurrentIRQ.HasValue && CurrentIRQ > -1) in ReadDoubleWord()
92 return (uint)CurrentIRQ.Value; in ReadDoubleWord()
139 if (CurrentIRQ.HasValue) in WriteDoubleWord()
141 BitHelper.SetBit(ref interruptPendingRegister, (byte)CurrentIRQ, false); in WriteDoubleWord()
[all …]