source: buchla-68k/iolib/pause.c@ 0580615

Last change on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Point of no return.

  • Property mode set to 100644
File size: 435 bytes
RevLine 
[f40a309]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
[0580615]10extern int waitcr(void);
11extern void writeln(int unit, char *buf);
[f40a309]12
[0580615]13void pause(char *s)
[f40a309]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.