Fix asm int call for LLVM 8

This commit is contained in:
Justin C. Miller
2019-03-22 17:42:51 -07:00
parent 9067f8d298
commit 9472dab522

View File

@@ -16,6 +16,6 @@ __kernel_assert(const char *file, unsigned line, const char *message)
cons->puts("\n"); cons->puts("\n");
} }
__asm__ ( "int $0xe4" );
while (1) __asm__ ("hlt"); while (1) __asm__ ("hlt");
__asm__ ( "int $0xe4" );
} }