Update os.c
This commit is contained in:
parent
0e96e8efd8
commit
b2b673f7dd
1 changed files with 5 additions and 6 deletions
11
source/os.c
11
source/os.c
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue