git-svn-id: https://spexeah.com:8443/svn/Asuro@514 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron
2018-04-12 21:00:07 +00:00
parent aae55ef2ec
commit 1a742c01fa
14 changed files with 23 additions and 2 deletions

View File

@ -97,7 +97,7 @@ var
temp : uint32;
atmp : puint32;
test : puint8;
fb : puint8;
begin
{ Store Multiboot info }
@ -150,6 +150,11 @@ begin
tss.init();
scheduler.init();
fb:= puint8(uint32(multibootinfo^.framebuffer_addr) + KERNEL_VIRTUAL_BASE);
for i:=0 to 500 do begin
fb[i]:= $0F;
end;
{ Call Tracer }
tracer.init();