1
0

kernel.c 302 B

12345678910
  1. #include "../drivers/screen.h"
  2. void main() {
  3. clear_screen();
  4. kprint_at("X", 1, 6);
  5. kprint_at("This text spans multiple lines", 75, 10);
  6. kprint_at("There is a line\nbreak", 0, 20);
  7. kprint("There is a line\nbreak");
  8. kprint_at("What happens when we run out of space?", 45, 24);
  9. }