diff options
author | dzwdz | 2022-07-16 23:08:50 +0200 |
---|---|---|
committer | dzwdz | 2022-07-16 23:08:50 +0200 |
commit | 4c10db944ca18c8001848c7e4e8ef51876bbe094 (patch) | |
tree | 38db3ebb7dc18c0640223561378b897b9dc3dabd /src/user/app | |
parent | a251c14f1a745f3388ce73a5a45ebc73cd1782b5 (diff) |
amd64: all tests pass
Diffstat (limited to 'src/user/app')
-rw-r--r-- | src/user/app/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/user/app/main.c b/src/user/app/main.c index eff953a..6672344 100644 --- a/src/user/app/main.c +++ b/src/user/app/main.c @@ -63,13 +63,12 @@ int main(void) { printf("couldn't open /kdev/com1\n"); _syscall_exit(1); } - //termcook(); + termcook(); shell_loop(); _syscall_exit(1); } - if (!fork()) { if (!file_reopen(stdout, "/vga_tty", 0)) { printf("couldn't open /vga_tty\n"); // TODO borked @@ -79,7 +78,7 @@ int main(void) { printf("couldn't open /keyboard\n"); _syscall_exit(1); } - //termcook(); + termcook(); shell_loop(); _syscall_exit(1); |