Files
xv6-custom-os/hello.c
iDunnoDev 9b23ca2a45 Added buffer to the console
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
2022-12-09 10:39:55 +00:00

7 lines
106 B
C

#include "types.h"
#include "user.h"
int main(int argc, char *argv[]) {
greeting();
exit();
}