diff --git a/Asuro.iso b/Asuro.iso index c29ffba1..90aabfa4 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/lib/libpconsole.a b/lib/libpconsole.a index 9222fe7f..e4dae6fb 100644 Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a index c9295cfb..bebe8e73 100644 Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ diff --git a/lib/libpsystem.a b/lib/libpsystem.a index 5c9f616b..df77ff27 100644 Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ diff --git a/src/lmemorymanager.pas b/src/lmemorymanager.pas index 6ddec1ed..dc7d5dd7 100644 --- a/src/lmemorymanager.pas +++ b/src/lmemorymanager.pas @@ -30,12 +30,12 @@ var i : uint32; begin - console.writestringln('VMM: INIT BEGIN.'); + console.writestringln('LMM: INIT BEGIN.'); For i:=0 to MAX_ENTRIES-1 do begin Memory_Manager[i].Present:= False; end; Memory_Start:= uint32(@util.endptr); - console.writestringln('VMM: INIT END.'); + console.writestringln('LMM: INIT END.'); end; function kalloc(size : uint32) : void; diff --git a/src/pmemorymanager.pas b/src/pmemorymanager.pas index d5fbb71f..d51d3741 100644 --- a/src/pmemorymanager.pas +++ b/src/pmemorymanager.pas @@ -73,10 +73,6 @@ begin PhysicalMemory[i].MappedTo:= 0; end; while uint32(mmap) < (address + length) do begin - console.writehexln(mmap^.base_addr); - console.writehexln(mmap^.length); - console.writehexln(mmap^.mtype); - console.writestringln(''); if mmap^.mtype = $01 then begin set_memory_area_present(mmap^.base_addr, mmap^.length, True); end else begin