|
Last change
on this file since 5fa506d was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Use standard integer types.
|
-
Property mode
set to
100644
|
|
File size:
447 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 "biosdefs.h"
|
|---|
| 9 |
|
|---|
| 10 | extern int16_t waitcr(void);
|
|---|
| 11 | extern void writeln(int16_t unit, int8_t *buf);
|
|---|
| 12 |
|
|---|
| 13 | void pause(int8_t *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.