Merge branch 'feature/lmemorymanager-fix' into 'develop'

Fixed klfree being a function not procedure causing compilation bugs.

See merge request spexeah/asuro!15
This commit is contained in:
Aaron Hance 2021-06-23 23:11:28 +00:00
commit 78955c41ab

View File

@ -58,7 +58,7 @@ var
procedure init; procedure init;
function kalloc(size : uint32) : void; function kalloc(size : uint32) : void;
function klalloc(size : uint32) : void; function klalloc(size : uint32) : void;
function klfree(size : uint32); //Todo ??? Profit? procedure klfree(size : uint32); //Todo ??? Profit?
function kpalloc(address : uint32) : void; function kpalloc(address : uint32) : void;
procedure kfree(area : void); procedure kfree(area : void);
@ -131,7 +131,7 @@ begin
//pop_trace; //pop_trace;
end; end;
function klfree(size : uint32); procedure klfree(size : uint32);
begin begin
//Todo Implement //Todo Implement
//Nahhhhhhhhhhhh //Nahhhhhhhhhhhh