From 45e18de842aba211d2fa4a75de4c6b6a28389a50 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 11 Jul 2023 02:29:40 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=93=A6=20Rearrange=20kernel?= =?UTF-8?q?=5Fmain?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nucleus/src/main.rs | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/nucleus/src/main.rs b/nucleus/src/main.rs index faa30fe..24027b5 100644 --- a/nucleus/src/main.rs +++ b/nucleus/src/main.rs @@ -40,6 +40,28 @@ use { entry!(kernel_main); +/// Kernel entry point. +/// `arch` crate is responsible for calling it. +// #[inline] +pub fn kernel_main() -> ! { + #[cfg(feature = "jtag")] + machine::arch::jtag::wait_debugger(); + + init_exception_traps(); + + #[cfg(not(feature = "noserial"))] + init_uart_serial(); + + init_mmu(); + + #[cfg(test)] + test_main(); + + command_prompt(); + + reboot() +} + #[cfg(not(test))] #[panic_handler] fn panicked(info: &PanicInfo) -> ! { @@ -117,28 +139,6 @@ fn init_uart_serial() { } } -/// Kernel entry point. -/// `arch` crate is responsible for calling it. -// #[inline] -pub fn kernel_main() -> ! { - #[cfg(feature = "jtag")] - machine::arch::jtag::wait_debugger(); - - init_exception_traps(); - - #[cfg(not(feature = "noserial"))] - init_uart_serial(); - - init_mmu(); - - #[cfg(test)] - test_main(); - - command_prompt(); - - reboot() -} - //------------------------------------------------------------ // Start a command prompt //------------------------------------------------------------