/* ============================================================================= pause.c -- output a message and wait for a CR Version 3 -- 1987-07-15 -- D.N. Lynx Crowe ============================================================================= */ #include "all.h" extern int16_t waitcr(void); extern void writeln(int16_t unit, int8_t *buf); void pause(int8_t *s) { writeln(CON_DEV, s); writeln(CON_DEV, "\r\n"); waitcr(); }