xref: /netbsd-src/sys/arch/mvme68k/stand/libbug/outstr.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: outstr.c,v 1.4 2013/09/23 01:39:27 tsutsui 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_outstr(char *start, char *end)
14 {
15 
16 	MVMEPROM_ARG2(end, start);
17 	MVMEPROM_CALL(MVMEPROM_OUTSTR);
18 }
19