Added basic multiboot compliant bootloader dectetion, as well as learning to read the multiboot structor.

This commit is contained in:
2019-02-09 17:16:24 -06:00
parent 657b716f77
commit 4ba0f93efc
6 changed files with 56 additions and 24 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ extern unsigned char inportb (unsigned short _port);
extern void outportb (unsigned short _port, unsigned char _data);
extern bool strcmp(char* str1, char* str2);
extern void idle();
char* int_to_string(int value, int base);
char* int_to_string(unsigned int value, int base);
/* ISRS.C */
void isrs_install();
/* This defines what the stack looks like after an ISR was running */