Remove debugging

This commit is contained in:
Jeremy Soller 2016-09-15 08:39:20 -06:00
parent 33e098c124
commit 53a5a9188a
4 changed files with 4 additions and 26 deletions

View file

@ -157,9 +157,10 @@ pub extern fn kmain() {
}
loop {
unsafe { interrupt::enable_and_halt(); }
unsafe { context::switch(); }
unsafe {
context::switch();
interrupt::enable_and_halt();
}
}
}