[????] BUILD 0.1.1.50 DATE 9/20/2011 AT 12:43 PM
==================================================== Mainly changed: Tasking + Implemented multitasking + Switching works ? TODO: Fix other not working tasking routines
This commit is contained in:
@ -118,3 +118,9 @@ int32 LogWrite (uint8 error, string device, string format, ...)
|
||||
ConsoleCursorUpdateHardware();
|
||||
return i;
|
||||
}
|
||||
|
||||
void LogAssert (int32 condition, string file, int32 line)
|
||||
{
|
||||
if (!condition)
|
||||
Panic("Assert", "Assertion failed in file %s line %d.\n", file, line);
|
||||
}
|
||||
|
Reference in New Issue
Block a user