Beispiel #1
0
        public IrqSource(uint id, IPlatformLevelInterruptController irqController)
        {
            this.parent = irqController;

            Id = id;
            Reset();
        }
Beispiel #2
0
        public IrqContext(uint id, IPlatformLevelInterruptController irqController)
        {
            this.irqController = irqController;
            this.id            = id;

            enabledSources   = new HashSet <IrqSource>();
            activeInterrupts = new Stack <IrqSource>();
        }