Fixed klfree being a function not procedure causing compilation bugs.

This commit is contained in:
Kieron Morris 2021-06-24 00:10:45 +01:00
parent f835cd7f12
commit becf513602

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