aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parisc/parisc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parisc/parisc.c b/src/parisc/parisc.c
index 9a2ade4..8232d64 100644
--- a/src/parisc/parisc.c
+++ b/src/parisc/parisc.c
@@ -1779,6 +1779,7 @@ static void print_menu(void)
#endif
" HElp [<menu>|<command>] Display help for menu or command\n"
" RESET Restart the system\n"
+ " EXIT Exit QEMU emulation\n"
"-------\n");
}
@@ -1866,6 +1867,10 @@ again2:
reset();
if (input[0] == 'H' && input[1] == 'E') // HELP?
goto again;
+ if (input[0] == 'L' && input[1] == 'S') // HELP? (ls)
+ goto again;
+ if (input[0] == 'E' && input[1] == 'X') // EXIT
+ hlt();
if (input[0] != 'B' || input[1] != 'O') { // BOOT?
printf("Unknown command, please try again.\n\n");
goto again2;