blob: 9e75f59dd978d8a830a3be4ec453ab98af451f64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#![no_main]
#![feature(compiler_builtins_lib)]
#![feature(abi_x86_interrupt)]
#![feature(panic_info_message)]
#![no_std]
use core::fmt::Write;
use kernel;
use kernel::interrupts;
use kernel::interrupts::exceptions;
use kernel::io::qemu;
#[no_mangle]
extern "C" fn _start() -> ! {
kernel::init();
unsafe {
exceptions::expect_fault(interrupts::Interrupts::PageFault);
}
_loop(0);
panic!("PAGE_FAULT not caught");
loop {}
}
fn _loop(i: u128) -> u128 {
if i > 1u128 << 120 {
return i;
}
let n = i;
let mut stdout = kernel::OStream::new();
write!(&mut stdout, "{:x}", &n as *const u128 as u128).unwrap();
_loop(i + 1)
}
#[cfg(test)]
#[panic_handler]
#[no_mangle]
extern "C" fn panic_handler(info: &core::panic::PanicInfo) -> ! {
kernel::testing::serial_panic(info);
loop {}
}
|