Compare commits

...

2 Commits

Author SHA1 Message Date
1894987afc Merge branch 'main' of git.chauvet.pro:starnakin/42_KFS 2024-09-07 14:37:47 +02:00
446eddf3b7 submodule added 2024-09-07 14:35:52 +02:00
2 changed files with 5 additions and 4 deletions

@ -1 +1 @@
Subproject commit 69caa70c38aac2894265887d61223e35aeed5f27
Subproject commit 5b4d1fbf365d39322bfa0b19b450b68f4bc75426

View File

@ -22,7 +22,8 @@ void kernel_main(void)
terminal_initialize();
/* Newline support is left as an exercise. */
kprintf(0, "test %d a %d b %d\n", 10, 2, 3);
while (true)
terminal_getkey();
for (int i = 1001; i; i--)
kprintf(0, "%d\n", i);
while (true)
terminal_getkey();
}