mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-05-09 23:31:29 +08:00
41 lines
705 B
Rust
41 lines
705 B
Rust
#![no_std]
|
|
#![no_main]
|
|
#![feature(panic_info_message)]
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
mod console;
|
|
mod batch;
|
|
mod lang_items;
|
|
mod logging;
|
|
mod sbi;
|
|
mod sync;
|
|
mod syscall;
|
|
mod trap;
|
|
|
|
core::arch::global_asm!(include_str!("entry.asm"));
|
|
core::arch::global_asm!(include_str!("link_app.S"));
|
|
|
|
fn clear_bss() {
|
|
extern "C" {
|
|
fn sbss();
|
|
fn ebss();
|
|
}
|
|
unsafe {
|
|
core::slice::from_raw_parts_mut(sbss as usize as *mut u8, ebss as usize - sbss as usize)
|
|
.fill(0);
|
|
}
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn rust_main() -> ! {
|
|
clear_bss();
|
|
logging::init();
|
|
println!("[kernel] Hello, world!");
|
|
trap::init();
|
|
batch::init();
|
|
batch::run_next_app();
|
|
}
|