diff --git a/Asuro.iso b/Asuro.iso index 4bfadbc1..99ab082f 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index a154a512..2603a457 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index e6d49279..235d523b 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 3692d03f..9d95bbe6 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/src/memorymanager.pas b/src/memorymanager.pas index a4ae57c2..16431e2a 100644 --- a/src/memorymanager.pas +++ b/src/memorymanager.pas @@ -9,7 +9,7 @@ const ALLOC_SPACE = 8; //64-Bit Allocations MAX_ENTRIES = $FFFF; -procedure init(); +procedure init; function kalloc(size : uint32) : void; procedure kfree(area : void); @@ -19,7 +19,7 @@ var Memory_Start : uint32; Memory_Manager : bitpacked array[1..MAX_ENTRIES] of Boolean; -procedure init(); +procedure init; begin Memory_Start:= uint32(@util.endptr); end; @@ -29,7 +29,7 @@ begin kalloc:= void(0); end; -function kfree(area : void); +procedure kfree(area : void); begin end;