Last change
on this file since 7c5def4 was b28a12e, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Zero redundant declarations.
|
-
Property mode
set to
100644
|
File size:
365 bytes
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | pause.c -- output a message and wait for a CR
|
---|
4 | Version 3 -- 1987-07-15 -- D.N. Lynx Crowe
|
---|
5 | =============================================================================
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "ram.h"
|
---|
9 |
|
---|
10 | void pause(int8_t *s)
|
---|
11 | {
|
---|
12 | writeln(CON_DEV, s);
|
---|
13 | writeln(CON_DEV, "\r\n");
|
---|
14 | waitcr();
|
---|
15 | }
|
---|
16 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.