
Added hotkeys to switch between console buffers and to return to the home one Added clear screen command Added debug text outputs to the hello command and when loading sh
8 lines
133 B
C
8 lines
133 B
C
#include "types.h"
|
|
#include "user.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
cls();
|
|
//printf(1, "$ ");
|
|
exit();
|
|
}
|