Removes exception from init.cpp

This commit is contained in:
Felix Queißner 2016-05-05 19:51:38 +02:00
parent 9a8f9e956f
commit 55cdb2050c
2 changed files with 0 additions and 5 deletions

View file

@ -97,8 +97,6 @@ extern "C" void init(Structure const & data)
Console::main << "allocated page " << i << " [" << success << "]: " << page << "\n";
}
*/
asm volatile("int $0x1");
while(true);
}

View file

@ -37,9 +37,6 @@ void BSOD::die(Error code, const char *msg, CpuState *cpu)
<< "esp = " << hex(cpu->esp) << "\n"
<< "ss = " << hex(cpu->ss) << "\n";
asm volatile ("hlt");
while(true);
}