From: John Hodge Date: Thu, 1 Oct 2009 08:06:53 +0000 (+0800) Subject: Actually initialised the DMA X-Git-Tag: rel0.06~398 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=4cbfa66238970f126b63d677ca163f4dd944ac8e;p=tpg%2Facess2.git Actually initialised the DMA --- diff --git a/Kernel/system.c b/Kernel/system.c index b3134836..26ce100e 100644 --- a/Kernel/system.c +++ b/Kernel/system.c @@ -8,6 +8,7 @@ // === IMPORTS === extern int Modules_LoadBuiltins(); extern int PCI_Install(); +extern void DMA_Install(); // === PROTOTYPES === void System_Init(char *ArgString); @@ -26,7 +27,7 @@ void System_Init(char *ArgString) { // - Start Builtin Drivers & Filesystems PCI_Install(); - //ATA_Install(); + DMA_Install(); Modules_LoadBuiltins(); // - Parse Kernel's Command Line