git.ucc.asn.au
/
tpg
/
acess2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15e56ad
)
Actually initialised the DMA
author
John Hodge
<
[email protected]
>
Thu, 1 Oct 2009 08:06:53 +0000
(16:06 +0800)
committer
John Hodge
<
[email protected]
>
Thu, 1 Oct 2009 08:06:53 +0000
(16:06 +0800)
Kernel/system.c
patch
|
blob
|
history
diff --git
a/Kernel/system.c
b/Kernel/system.c
index
b313483
..
26ce100
100644
(file)
--- 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();
-
//AT
A_Install();
+
DM
A_Install();
Modules_LoadBuiltins();
// - Parse Kernel's Command Line
UCC
git Repository :: git.ucc.asn.au