Add newline()

This commit is contained in:
Quinten Kock 2020-12-07 21:30:44 +01:00
parent 0b5c7ebcfb
commit 1229393a8c
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ void kmain() {
printf("Bootloader type: %s (%s %s)\n", boot_info.boot_protocol, boot_info.bootloader_name, boot_info.bootloader_ver);
printf("System time: %d\n", boot_info.epoch);
printf("Usable memory: %h (at %x)\n", boot_info.usable.len, boot_info.usable.start);
printf("Cmdline: %s", boot_info.cmdline);
printf("Cmdline: %s\n", boot_info.cmdline);
vga_setcolor(VGA_DARK_GRAY);
vga_write_elsewhere("(c) Quinten Kock 2020 (MIT License)", 24, 0);