Extracted provided zip.

This commit is contained in:
2023-09-11 14:28:11 -04:00
parent 18802a2957
commit f3bdacdd2c
153 changed files with 7214 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#include "../drivers/screen.h"
void _start() {
clear_screen();
kprint_at("X", 1, 6);
kprint_at("This text spans multiple lines", 75, 10);
kprint_at("There is a line\nbreak", 0, 20);
kprint("There is a line\nbreak");
kprint_at("What happens when we run out of space?", 45, 24);
}