xnoe-os/kernel32.c

51 lines
1.1 KiB
C

#include "types.h"
#include "screenstuff.h"
#include "io.h"
#include "idt.h"
#include "keyboard.h"
bool strcmp(char* a, char* b, int max) {
int index = 0;
while (index < max) {
if (a[index] != b[index])
return false;
index++;
}
return true;
}
int main() {
init_idt();
init_term();
printf("KERNEL32 OK!\n");
printf("Hello, World!\n\nWe are running XnoeOS Code in C now, Protected Mode has been achieved and everything is working super nicely!\n\nHow wonderful!\n\nNow I just need to hope my print function works properly too~~\n");
init_keyboard();
enable_idt();
while (1) {
printf(">>> ");
char buffer[128];
for (int i=0; i<128; i++)
buffer[i] = 0;
readline(128, buffer);
//printf("%s\n", buffer);
if (strcmp(buffer, "help", 4)) {
printf(
"XnoeOS 32 Bit Mode Help.\n"
"------------------------\n"
"- help\n"
": Shows this message\n"
"- clear\n"
": Clears the screen\n"
);
} else if (strcmp(buffer, "clear", 5)) {
clear_screen();
set_curpos(0, 0);
}
}
}