feat: small cleanup

This commit is contained in:
2021-02-10 18:53:47 +01:00
parent 2ac0da6574
commit 2b295db30a
2 changed files with 2 additions and 7 deletions

View File

@@ -21,7 +21,6 @@
#define BOOTLOADER_NAME_MAX_LENGTH 64
#define CMDLINE_MAX_LENGTH 256
const char *msg_booted = "Booted Successfully!\n";
const int version_major = 0,
version_minor = 0,
version_patch = 1;
@@ -170,11 +169,7 @@ void kmain(multiboot_info_t *multiboot_info) {
init_pci_system();
init_block_devices();
printf("%s v%d.%d.%d\n", msg_booted, version_major, version_minor, version_patch);
// print_gdt();
// u8* tmp = malloc(4096);
// ide_access(0, 0, 0, 16, tmp);
printf("Booted successfully v%d.%d.%d\n", version_major, version_minor, version_patch);
// enter main loop
while (true) {