Update os.c

This commit is contained in:
Sam Sneed 2024-06-03 18:14:35 +00:00 committed by GitHub
parent 0e96e8efd8
commit b2b673f7dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@
#include "kbd.h" //keyboard stuff #include "kbd.h" //keyboard stuff
#include "thirdparty.h" #include "thirdparty.h"
//#include "crashhand.h" //Comming Soon(TM) //#include "crashhand.h" //Comming Soon(TM)
//#include "sticky.h" //module deprecated. use new stick function and new function called delay. //#include "sticky.h" //module deprecated. use new stick function and new function called wait.
//#include "diamondfs.h" //BORKED - USE AT YOUR OWN RISK //#include "diamondfs.h" //BORKED - USE AT YOUR OWN RISK
#include "rushell.h" // Should always be at the bottom (Testing shell, only displays output and plays "music." Does not actually function as a shell.) #include "rushell.h" // Should always be at the bottom (Testing shell, only displays output and plays "music." Does not actually function as a shell.)
@ -43,19 +43,18 @@ void exit() {
} }
void os() { void os() {
rloadstring("welcomescreen"); rloadstring("welcomescreen", "", "");
rloadstring("helpscreen"); rloadstring("helpscreen", "", "");
//panic("TEST"); //uncomment to test panicing //panic("TEST"); //uncomment to test panicing
rloadstring("debugRainbow"); rloadstring("debugRainbow", "", "");
while ( 1 == 1 ) { while ( 1 == 1 ) {
rloadstring("basickeys"); rloadstring("basickeys", "", "");
} }
} }
void kern() { void kern() {
//extern bootloader(); //extern bootloader();
//bootloader(); //bootloader();
haltLoop();
clear(lastVGATextColor()); clear(lastVGATextColor());
print("GEMS OK, WAITING A FEW TICKS TO TEST TIME... \n"); print("GEMS OK, WAITING A FEW TICKS TO TEST TIME... \n");
wait(10); //ok? ok. wait(10); //ok? ok.