//! Architectural boot code //! # Boot code for ARM //! crate::cpu::boot::arch_boot use core::arch::global_asm; global_asm!(include_str!("boot.s")); /// The Rust entry of the `kernel` binary. #[no_mangle] pub unsafe fn _start_rust() -> ! { crate::kernel_init() }