xref: /netbsd/sys/arch/mvme68k/stand/libbug/outln.c (revision bf9ec67e)
1 /*	$NetBSD: outln.c,v 1.2 1996/05/17 19:50:54 chuck Exp $	*/
2 
3 /*
4  * bug routines -- assumes that the necessary sections of memory
5  * are preserved.
6  */
7 #include <sys/types.h>
8 #include <machine/prom.h>
9 
10 #include "libbug.h"
11 
12 void
13 mvmeprom_outln(start, end)
14 	char *start, *end;
15 {
16 	MVMEPROM_ARG1(end);
17 	MVMEPROM_ARG2(start);
18 	MVMEPROM_CALL(MVMEPROM_OUTSTRCRLF);
19 }
20