diff --git a/emul_repl.c b/emul_repl.c index 8503a88..34f896d 100644 --- a/emul_repl.c +++ b/emul_repl.c @@ -52,10 +52,17 @@ getmaxyx(win, y, x); move(1, (x-strlen(help_title))/2); printw("%s\n\n", help_title); - printw("Command to this Emulator REPL : You need to put ':' for swich command mode.\n\n"); - printw("\t:help\tDisplay help\n"); - printw("\t:quit\tExit repl\n"); + printw("Summary:\n\n"); + printw(" This program is Asembly Emulator to based on MIPS.\n\n"); + printw("Command to this Emulator REPL:\n\n"); + printw(" You need to put ':' for swich command mode.\n\n"); + printw(" :help Display help\n"); + printw(" :quit Exit repl\n"); refresh(); + + move(y-1, 0); + printw(" Put any key to exit this help."); + move(y-1, 0); getch(); endwin();