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

This commit is contained in:
kieron 2018-04-29 19:08:50 +00:00
parent 550e621d59
commit 2fb551d5ec
73 changed files with 0 additions and 11 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -17,7 +17,6 @@ const
BSOD_ENABLE = true; BSOD_ENABLE = true;
TRACER_ENABLE = true; TRACER_ENABLE = true;
CONSOLE_SLOW_REDRAW = false; //Redraws the Window manager after every character, but slows performance. CONSOLE_SLOW_REDRAW = false; //Redraws the Window manager after every character, but slows performance.
TRACE_TO_SERIAL = true;
type type
//internal types //internal types

View File

@ -35,7 +35,6 @@ var
i : uint32; i : uint32;
begin begin
CLI;
if TRACER_ENABLE then begin if TRACER_ENABLE then begin
if t_ready then begin if t_ready then begin
if not Locked then begin if not Locked then begin
@ -44,19 +43,10 @@ begin
Traces[i]:= Traces[i-1]; Traces[i]:= Traces[i-1];
end; end;
Traces[0]:= StringCopy(t_name); Traces[0]:= StringCopy(t_name);
for i:=0 to StringSize(SERIALID)-1 do begin
serial.send(COM1, uint8(SERIALID[i]), 1000);
end;
for i:=0 to StringSize(t_name)-1 do begin
serial.send(COM1, uint8(t_name[i]), 1000);
end;
serial.send(COM1, 13, 10);
//serial.send(COM1, 10, 10);
Locked:= false; Locked:= false;
end; end;
end; end;
end; end;
STI;
end; end;
procedure pop_trace; procedure pop_trace;