Load kernel on qemu/k210.
This commit is contained in:
parent
4480790386
commit
5b69a312ba
10 changed files with 1588 additions and 1 deletions
|
@ -1,5 +1,12 @@
|
|||
#![no_std]
|
||||
#![no_main]
|
||||
#![feature(global_asm)]
|
||||
|
||||
mod lang_items;
|
||||
|
||||
global_asm!(include_str!("entry.asm"));
|
||||
|
||||
#[no_mangle]
|
||||
pub extern "C" fn rust_main() -> ! {
|
||||
loop {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue