mirror of
https://github.com/nikhilroxtomar/Simple-Operating-System-from-Scratch.git
synced 2026-01-14 00:48:50 +00:00
9 lines
158 B
C
9 lines
158 B
C
#include "../../include/print.h"
|
|
|
|
void taskbar(){
|
|
print("\n");
|
|
char* user="User: root";
|
|
clearLine(ROWS-1, ROWS, 0x4f);
|
|
printLine(ROWS-1, ROWS, user, 0x4f);
|
|
}
|