[????] BUILD 0.1.1.??? DATE 9/0?/2011 AT ?:?? ??

====================================================
Mainly changed: Tasking
+ Implemented multitasking
This commit is contained in:
2021-09-14 18:54:59 +03:00
parent 04449cb787
commit e3b3584734
36 changed files with 427 additions and 400 deletions

View File

@ -173,7 +173,7 @@ void _CommandMemPrintMemmap()
blocks = n - old;
used = 0;
for (; old < n; old++)
used += (MemPhGetFrame(old) != 0);
used += (MemPhGetBlock (old) != 0);
if (used <= blocks / 5) c = ' ';
else if (used > 4 * blocks / 5) c = 219;

View File

@ -55,7 +55,7 @@ Point ConsoleGetCursor()
return ConsoleCursor;
}
extern void ConsoleSetCursor(Point p)
void ConsoleSetCursor(Point p)
{
ConsoleCursor = p;
}