From 01342aeb54f888f637ee598aa51e2651b69ff5a8 Mon Sep 17 00:00:00 2001 From: Samma - PixelStudio <81291107+Samma2009@users.noreply.github.com> Date: Tue, 13 Aug 2024 18:03:45 +0200 Subject: [PATCH] Update PCIExpress.cs --- source/Cosmos.Core/PCIE/PCIExpress.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/source/Cosmos.Core/PCIE/PCIExpress.cs b/source/Cosmos.Core/PCIE/PCIExpress.cs index a7ef3aa50a..d658bbd608 100644 --- a/source/Cosmos.Core/PCIE/PCIExpress.cs +++ b/source/Cosmos.Core/PCIE/PCIExpress.cs @@ -83,7 +83,6 @@ public static void Initialize() var numEntries = (ACPI.MCFG->Header.Length - sizeof(ACPI.MCFGHeader) + sizeof(ACPI.MCFGEntry)) / sizeof(ACPI.MCFGEntry); Console.WriteLine(numEntries + " PCIE entries"); - Console.ReadKey(); for (int i = 0; i < numEntries; i++) { ACPI.MCFGEntry* Entries = &ACPI.MCFG->Entry0;