FUUUUCKKKKKKKKKK

git-svn-id: https://spexeah.com:8443/svn/Asuro@102 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-05-18 14:14:30 +00:00
parent f2a42134c7
commit 1414f10ba1
5 changed files with 3 additions and 3 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -9,7 +9,7 @@ const
ALLOC_SPACE = 8; //64-Bit Allocations ALLOC_SPACE = 8; //64-Bit Allocations
MAX_ENTRIES = $FFFF; MAX_ENTRIES = $FFFF;
procedure init(); procedure init;
function kalloc(size : uint32) : void; function kalloc(size : uint32) : void;
procedure kfree(area : void); procedure kfree(area : void);
@ -19,7 +19,7 @@ var
Memory_Start : uint32; Memory_Start : uint32;
Memory_Manager : bitpacked array[1..MAX_ENTRIES] of Boolean; Memory_Manager : bitpacked array[1..MAX_ENTRIES] of Boolean;
procedure init(); procedure init;
begin begin
Memory_Start:= uint32(@util.endptr); Memory_Start:= uint32(@util.endptr);
end; end;
@ -29,7 +29,7 @@ begin
kalloc:= void(0); kalloc:= void(0);
end; end;
function kfree(area : void); procedure kfree(area : void);
begin begin
end; end;