modified: kernel/kernel.c

This commit is contained in:
Brett Weiland 2021-04-18 16:01:48 -05:00
parent 774e3796b2
commit bad4b0e9bd
2 changed files with 0 additions and 19 deletions

Binary file not shown.

View File

@ -7,26 +7,7 @@
#include <panic.h>
void test4() {
char bruh[10];
panic(KERNEL_PANIC_KERNEL_RETURNED, KERNEL_PANIC_INVOKED);
}
void test3() {
char bruh[5];
test4();
}
void test2() {
int a = 1;
test3();
}
void test1() {
printf("fuck\n");
test2();
}
void main() {
test1();
if(!(init_serial(COM1))) {
printf("\nKernal started on CPU 1!\n"); // will detect cpu later
}