]> git.ameliathe1st.gay Git - voyage-au-centre-des-fichiers.git/commitdiff
Changed the logged text a bit
authorAmelia Coutard <eliottulio.coutard@gmail.com>
Sat, 25 Feb 2023 13:12:49 +0000 (14:12 +0100)
committerAmelia Coutard <eliottulio.coutard@gmail.com>
Sat, 25 Feb 2023 13:12:49 +0000 (14:12 +0100)
kernel/src/kernel.cpp

index 2fd9d35066bb6331ee9b7523c39865bdcfc07f7e..e786124d01d4c80f71a41cb5f0c742e99856f9af 100644 (file)
@@ -196,12 +196,12 @@ extern "C" void kmain(unsigned long magic, os::phys_ptr<const multiboot2::info_s
        get_base_address(PML4T.contents[511])->contents[511].page.U_S = true;
        PML4T.contents[511].U_S = true;
 
-       os::print("Load ring 3 interrupts stack:\n");
+       os::print("Loading ring 3 interrupts stack.\n");
        os::set_ring0_stack(TSS, std::uint64_t(&interrupt_stack_top));
-       os::print("Load TSS:\n");
+       os::print("Loading TSS.\n");
        os::load_tss();
-       os::print("Enable syscalls:\n");
+       os::print("Enabling syscalls.\n");
        os::enable_syscalls();
-       os::print("Trying move to ring 3:\n");
+       os::print("Moving to ring 3.\n");
        os::ftl_to_userspace();
 }