infinite loop somehow

This commit is contained in:
c0repwn3r 2022-05-15 15:18:54 -04:00
parent 9676138099
commit b4e6b2ee1e
Signed by: core
GPG Key ID: FDBF740DADDCEECF
4 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -41,7 +41,8 @@ void kmain() {
kernel_msg_ok("Enabled interrupts\n");
__asm__ __volatile__("int $2");
printf("ANSI code test: double \x1b[3;31m \x1b[31m \x1b[12m \x1b[0m\n");
printf("ANSI code test: double \x1b[3;31m \x1b[31m \x1b[12m \x1b[0m \x1b[3;31m \n");
printf("ansi code test done\n");
for (;;) {}
}