Remove debugging
This commit is contained in:
parent
b0797a5d8a
commit
ec1302bbe1
|
@ -82,11 +82,6 @@ pub unsafe extern fn kstart() -> ! {
|
|||
BSP_READY.store(true, Ordering::SeqCst);
|
||||
}
|
||||
|
||||
|
||||
for _i in 0..10 {
|
||||
print!("BSP\n");
|
||||
}
|
||||
|
||||
kmain();
|
||||
}
|
||||
|
||||
|
@ -115,10 +110,6 @@ pub unsafe extern fn kstart_ap(stack_start: usize, stack_end: usize) -> ! {
|
|||
asm!("pause" : : : : "intel", "volatile");
|
||||
}
|
||||
|
||||
for _i in 0..10 {
|
||||
print!("AP\n");
|
||||
}
|
||||
|
||||
loop {
|
||||
asm!("hlt");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue