Skip to content
Snippets Groups Projects
Commit b06ff595 authored by Byron Lathi's avatar Byron Lathi
Browse files

use a nicer exception loop.

parent 9f9f0953
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,9 @@ void do_exception(int n) {
break;
}
// blue screen of death placeholder
while(1);
while (1) {
asm volatile("hlt");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment