When I boot off of the GRUB floppy, I get dumped to the prompt, and type this:
Code: Select all
grub> root (fd0)
grub> kernel /boot/kernel.bin
, bss=0x3010
grub> boot
The kernel that is called by GRUB calls the main() function inside main.c, which then calls various functions inside scrn.c. The prototypes for all of these functions, preceded by 'extern', are in system.h (created by me, not anything to do with the compiler). I have attempted to make this work to no avail. Is there something that I'm overlooking, or something wrong? In the tutorial linked to above, I am at the stage at the end of the section on working with VGA display.