Skip to content

Commit 3f24210

Browse files
committed
remove old help message. Replace with terminal_ready which also has version #.
1 parent 2056827 commit 3f24210

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

src/connect.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ extern char host_name[32];
1212
*/
1313
void connect(void)
1414
{
15-
gotoxy(1,19);
16-
cprintf("Press EXTEND 0 for help with PLATO keys.");
15+
/* gotoxy(1,19); */
16+
/* cprintf("Press EXTEND 0 for help with PLATO keys."); */
1717
help_clear();
1818
help_prompt_input("Enter Hostname or <ENTER> for IRATA.ONLINE: ");
1919
cgets(host_name);

src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ void main(void)
1919
screen_init();
2020
terminal_init();
2121
ShowPLATO(splash,sizeof(splash));
22+
terminal_ready();
2223
terminal_initial_position();
2324
#ifdef __SPECTRANET__
2425
connect();

src/terminal.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,3 +303,12 @@ void terminal_char_load(padWord charnum, charData theChar)
303303
}
304304
}
305305
}
306+
307+
/**
308+
* terminal_ready() - Show ready
309+
*/
310+
void terminal_ready(void)
311+
{
312+
TTYLoc.x=TTYLoc.y=0;
313+
ShowPLATO("PLATOTerm 1.2 Ready. EXTEND 9 - Print. EXTEND 0 - Help",54);
314+
}

src/terminal.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,9 @@ padByte terminal_ext_in(void);
119119
*/
120120
void terminal_ext_out(padByte value);
121121

122+
/**
123+
* terminal_ready() - Show ready
124+
*/
125+
void terminal_ready(void);
126+
122127
#endif

0 commit comments

Comments
 (0)