1 // 2 // Copyright (c) 2010-2025 Antmicro 3 // 4 // This file is licensed under the MIT License. 5 // Full license text is available in 'licenses/MIT.txt'. 6 // 7 using System; 8 using Antmicro.Renode.Core; 9 using Antmicro.Renode.UnitTests.Mocks; 10 11 namespace Antmicro.Renode.UnitTests.Mocks 12 { 13 public class MockIrqSenderWithTwoInterrupts : MockIrqSender 14 { MockIrqSenderWithTwoInterrupts()15 public MockIrqSenderWithTwoInterrupts() : base() 16 { 17 AnotherIrq = new GPIO(); 18 } 19 20 public GPIO AnotherIrq { get; private set; } 21 } 22 } 23