// // Copyright (c) 2010-2020 Antmicro // // This file is licensed under the MIT License. // Full license text is available in 'licenses/MIT.txt'. // using System; using System.Collections.Generic; using Antmicro.Renode.Core; using Antmicro.Renode.Core.Structure; using Antmicro.Renode.Core.Structure.Registers; using Antmicro.Renode.Logging; using Antmicro.Renode.Peripherals.Bus; using Antmicro.Renode.Utilities; namespace Antmicro.Renode.Peripherals.PCI { public abstract class PCIeEndpoint : PCIeBasePeripheral { //todo: add registers enum public PCIeEndpoint(IPCIeRouter parent) : base(parent, HeaderType.Endpoint) { } } }