diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-16 17:14:58 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-16 17:14:58 +0100 |
commit | 5f87c447bdcb82beacbfb930942fe9995dcdb60f (patch) | |
tree | a2003dd1d8ce2b35d22283316d370c4fb25c9995 | |
parent | df343de7cca5f89f8e8d825fbcc1a49413412716 (diff) | |
download | Melon-5f87c447bdcb82beacbfb930942fe9995dcdb60f.tar.gz Melon-5f87c447bdcb82beacbfb930942fe9995dcdb60f.zip |
Nothing, really
-rw-r--r-- | HDD.img | bin | 20643840 -> 20643840 bytes | |||
-rw-r--r-- | Source/Library/Userland/Start.cpp | 3 |
2 files changed, 2 insertions, 1 deletions
Binary files differ diff --git a/Source/Library/Userland/Start.cpp b/Source/Library/Userland/Start.cpp index 0c25491..f1d1771 100644 --- a/Source/Library/Userland/Start.cpp +++ b/Source/Library/Userland/Start.cpp @@ -13,13 +13,14 @@ VirtualTerminal invt(0), outvt(0); int main(const Vector<String>& args); extern "C" void start() { + heap.create(0x40000000, 0x00040000, 0x00004000); //Initially create a 256ko heap with 16ko index + //Call static constructors u32int i = 0; for(u32int * call = &start_ctors; call < &end_ctors; call++) { ((void (*)(void))*call)(); } - heap.create(0x40000000, 0x00040000, 0x00004000); //Initially create a 256ko heap with 16ko index invt = VirtualTerminal::getIn(); outvt = VirtualTerminal::getOut(); if (!invt.valid()) threadFinishedSyscall(1); if (!outvt.valid()) threadFinishedSyscall(2); |