Added basic multiboot compliant bootloader dectetion, as well as learning to read the multiboot structor.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#ifndef BUILD_NUMBER
|
||||
#define BUILD_NUMBER "48"
|
||||
#define BUILD_NUMBER "111"
|
||||
#endif
|
||||
#ifndef VERSION_STR
|
||||
#define VERSION_STR "0.0.2.48 - Sun Jan 6 21:40:38 CST 2019"
|
||||
#define VERSION_STR "0.0.2.111 - Sat Feb 9 17:10:29 CST 2019"
|
||||
#endif
|
||||
#ifndef VERSION_STR_SHORT
|
||||
#define VERSION_STR_SHORT "0.0.2.48"
|
||||
#define VERSION_STR_SHORT "0.0.2.111"
|
||||
#endif
|
||||
|
||||
+1
-1
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user