FreeCalypso > hg > freecalypso-tools
comparison rvinterf/asyncshell/usercmd.c @ 447:e13f60d4f8dd
fc-shell: added unterm command for sending unterminated strings to ATI
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 09 Jan 2019 07:58:06 +0000 |
parents | 8c7e86bc137e |
children | b55a81ce7497 |
comparison
equal
deleted
inserted
replaced
446:a449ae0a1cec | 447:e13f60d4f8dd |
---|---|
22 extern void cmd_send_interactive(); | 22 extern void cmd_send_interactive(); |
23 extern void cmd_sp_interactive(); | 23 extern void cmd_sp_interactive(); |
24 extern void cmd_tch_dispatch(); | 24 extern void cmd_tch_dispatch(); |
25 extern void cmd_tchdl_interactive(); | 25 extern void cmd_tchdl_interactive(); |
26 extern void cmd_tgtreset(); | 26 extern void cmd_tgtreset(); |
27 extern void cmd_unterm(); | |
27 | 28 |
28 void | 29 void |
29 cmd_exit() | 30 cmd_exit() |
30 { | 31 { |
31 tty_cleanup(); | 32 tty_cleanup(); |
49 {"sp", cmd_sp_interactive}, | 50 {"sp", cmd_sp_interactive}, |
50 {"str", cmd_sendat}, | 51 {"str", cmd_sendat}, |
51 {"tch", cmd_tch_dispatch}, | 52 {"tch", cmd_tch_dispatch}, |
52 {"tch-dl", cmd_tchdl_interactive}, | 53 {"tch-dl", cmd_tchdl_interactive}, |
53 {"tgtreset", cmd_tgtreset}, | 54 {"tgtreset", cmd_tgtreset}, |
55 {"unterm", cmd_unterm}, | |
54 {0, 0} | 56 {0, 0} |
55 }; | 57 }; |
56 | 58 |
57 void | 59 void |
58 dispatch_user_cmd() | 60 dispatch_user_cmd() |