Home | History | Annotate | Line # | Download | only in libbug
outstr.c revision 1.1
      1 /*	$NetBSD: outstr.c,v 1.1 1996/05/17 19:31:55 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 void
     11 mvmeprom_outstr(start, end)
     12 	char *start, *end;
     13 {
     14 	MVMEPROM_ARG1(start);
     15 	MVMEPROM_ARG2(end);
     16 	MVMEPROM_CALL(MVMEPROM_OUTSTR);
     17 }
     18