Update kernel makefile, test more kernel code

This commit is contained in:
Byron Lathi
2023-10-28 13:12:41 -07:00
parent 4104a2eeb9
commit 2577ab2a9a
2 changed files with 7 additions and 4 deletions

View File

@@ -13,8 +13,10 @@
int main() {
char* string = "this is a shorter string";
cputs("Kernel");
int val = 42;
cputs("Kernel\n");
cprintf("Kernel printf\n");
cprintf("Val: %d\n", val);
cprintf("%s", string);
// cprintf("Here is a long string: %s\n", longstring);