mirror of
https://github.com/fergalmoran/ferglos.git
synced 2025-12-27 11:57:41 +00:00
10 lines
233 B
C++
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)
|
|
;
|
|
} |