Last change
on this file since 66b48e7 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
416 bytes
|
Rev | Line | |
---|
[3ae31e9] | 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 "biosdefs.h"
|
---|
| 9 |
|
---|
| 10 | extern int waitcr(), writeln();
|
---|
| 11 |
|
---|
| 12 | pause(s)
|
---|
| 13 | char *s;
|
---|
| 14 | {
|
---|
| 15 | writeln(CON_DEV, s);
|
---|
| 16 | writeln(CON_DEV, "\r\n");
|
---|
| 17 | waitcr();
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.