git-svn-id: https://spexeah.com:8443/svn/Asuro@600 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
@ -3,11 +3,11 @@ unit asuro;
|
||||
interface
|
||||
|
||||
const
|
||||
VERSION = '1.0.0-596a';
|
||||
VERSION = '1.0.0-599a';
|
||||
VERSION_MAJOR = '1';
|
||||
VERSION_MINOR = '0';
|
||||
VERSION_SUB = '0';
|
||||
REVISION = '596';
|
||||
REVISION = '599';
|
||||
RELEASE = 'a';
|
||||
|
||||
implementation
|
||||
|
@ -14,9 +14,10 @@ interface
|
||||
const
|
||||
KERNEL_VIRTUAL_BASE = $C0000000;
|
||||
KERNEL_PAGE_NUMBER = KERNEL_VIRTUAL_BASE SHR 22;
|
||||
BSOD_ENABLE = false;
|
||||
BSOD_ENABLE = true;
|
||||
TRACER_ENABLE = true;
|
||||
CONSOLE_SLOW_REDRAW = false; //Redraws the Window manager after every character, but slows performance.
|
||||
TRACE_TO_SERIAL = true;
|
||||
|
||||
type
|
||||
//internal types
|
||||
|
@ -372,7 +372,7 @@ begin
|
||||
if trace <> nil then begin
|
||||
console.writestring('[-0] ');
|
||||
console.writestringln(trace);
|
||||
for i:=1 to 6 do begin
|
||||
for i:=1 to tracer.get_trace_count-1 do begin
|
||||
trace:= tracer.get_trace_N(i);
|
||||
if trace <> nil then begin
|
||||
console.writestring(' [');
|
||||
|
Reference in New Issue
Block a user