Clean up isr references in main.cpp

This commit is contained in:
Justin C. Miller
2018-04-15 18:44:47 -07:00
parent bce281606e
commit 696c29086b

View File

@@ -28,8 +28,6 @@ load_console(const popcorn_data *header)
header->log_length}; header->log_length};
} }
extern "C" { void isr31(); }
void void
kernel_main(popcorn_data *header) kernel_main(popcorn_data *header)
{ {
@@ -46,7 +44,6 @@ kernel_main(popcorn_data *header)
cons.puts("Interrupts initialized.\n"); cons.puts("Interrupts initialized.\n");
// int x = 1 / 0; // int x = 1 / 0;
// isr31();
__asm__ __volatile__("int $15"); __asm__ __volatile__("int $15");
cons.puts("boogity!"); cons.puts("boogity!");