Files
ferglos/kernel.cpp
2020-06-04 21:51:42 +01:00

10 lines
233 B
C++

/*
take in the multiboot structure and the GRUB magic number
not sure I actually need magic_num though
*/
void ferglos_Main(void* mb_struct, unsigned int magic_num) {
printf("Hello, Sailor!");
while (1)
;
}