Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/IRQControllers/
DGaislerMIC.cs123 return registers.ProcessorInterruptForce[i]; in ReadDoubleWord()
240 registers.ProcessorInterruptForce[cpuid] |= interrupt_mask; in WriteDoubleWord()
269 registers.ProcessorInterruptForce[i] = 0; in Reset()
296 registers.ProcessorInterruptForce[i] |= processorPendingInterrupts; in OnGPIO()
385 if((!irqs[i].IsSet) && (registers.ProcessorInterruptForce[i] != 0)) in forwardInterrupt()
414 if((!irqs[cpuid].IsSet) && (registers.ProcessorInterruptForce[cpuid] != 0)) in forwardInterruptSingleCPU()
476 if((registers.ProcessorInterruptForce[cpuid] & interruptMask) != 0) in CPUAckInterrupt()
478 registers.ProcessorInterruptForce[cpuid] &= ~interruptMask; in CPUAckInterrupt()
582 public uint[] ProcessorInterruptForce; field in Antmicro.Renode.Peripherals.IRQControllers.GaislerMIC.deviceRegisters
588 ProcessorInterruptForce = new uint[maxNumberOfProcessors]; in deviceRegisters()