aboutsummaryrefslogtreecommitdiff
path: root/src/_arch/arm/cpu/boot.rs
blob: 9ea23303e4514cf6da2342d609163496fc32d10e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! 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()
}