From 4760b98ace40e3e79ca27f716cc4259ddaf35215 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Mon, 1 Oct 2012 12:24:47 +0800 Subject: [PATCH] Kernel/x86_64 - Forgot VPCI stub --- KernelLand/Kernel/arch/x86_64/vpci.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 KernelLand/Kernel/arch/x86_64/vpci.c diff --git a/KernelLand/Kernel/arch/x86_64/vpci.c b/KernelLand/Kernel/arch/x86_64/vpci.c new file mode 100644 index 00000000..0319e6ee --- /dev/null +++ b/KernelLand/Kernel/arch/x86_64/vpci.c @@ -0,0 +1,13 @@ +/* + * Acess2 Kernel x86 Port + * - By John Hodge (thePowersGang) + * + * vpci.c + * - Virtual PCI Bus + */ +#include + +// === GLOBALS === + int giVPCI_DeviceCount = 0; +tVPCI_Device gaVPCI_Devices[0]; + -- 2.20.1