1 //
2 // Copyright (c) 2010-2020 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 System.Collections.Generic;
9 using Antmicro.Renode.Core;
10 using Antmicro.Renode.Core.Structure;
11 using Antmicro.Renode.Core.Structure.Registers;
12 using Antmicro.Renode.Logging;
13 using Antmicro.Renode.Peripherals.Bus;
14 using Antmicro.Renode.Utilities;
15 
16 namespace Antmicro.Renode.Peripherals.PCI
17 {
18     public abstract class PCIeEndpoint : PCIeBasePeripheral
19     {
20         //todo: add registers enum
PCIeEndpoint(IPCIeRouter parent)21         public PCIeEndpoint(IPCIeRouter parent) : base(parent, HeaderType.Endpoint)
22         {
23         }
24     }
25 }
26 
27