orion_old/kernel/kernel/kernel.c

12 lines
314 B
C
Raw Normal View History

2021-08-04 15:14:22 +00:00
#include <stdio.h>
void kernel_main(void) {
printf("Hello from OrionOS!\n");
2021-08-05 13:43:31 +00:00
printf("Testing serial\n");
serial_printf("Test is success!\n");
serial_printf("Newline test\n");
char * test_string = "test";
serial_printf("This is string from variable: %s", test_string);
2021-08-05 13:43:31 +00:00
printf("Test finished success!\n");
2021-08-04 15:14:22 +00:00
}