[sq] add exceptions

This commit is contained in:
Berkus Decker 2019-02-23 22:59:58 +02:00
parent 53b967c826
commit 3e97a34223
1 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#![no_std]
#![no_main]
#![feature(asm)]
#![feature(global_asm)]
#![feature(const_fn)]
#![feature(format_args_nl)]
#![feature(lang_items)]
@ -79,6 +80,15 @@ fn kmain() -> ! {
println!("Hello, world!");
extern "C" {
static __exception_vectors_start: u64;
}
unsafe {
let exception_vectors_start: u64 = &__exception_vectors_start as *const _ as u64;
arch::traps::set_vbar_el1_checked(exception_vectors_start);
}
unsafe {
mmu::init();