1996-05-17 23:50:10 +04:00
|
|
|
/* $NetBSD: outln.c,v 1.2 1996/05/17 19:50:54 chuck Exp $ */
|
1996-05-17 23:31:46 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* bug routines -- assumes that the necessary sections of memory
|
|
|
|
* are preserved.
|
|
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <machine/prom.h>
|
|
|
|
|
1996-05-17 23:50:10 +04:00
|
|
|
#include "libbug.h"
|
|
|
|
|
1996-05-17 23:31:46 +04:00
|
|
|
void
|
|
|
|
mvmeprom_outln(start, end)
|
|
|
|
char *start, *end;
|
|
|
|
{
|
|
|
|
MVMEPROM_ARG1(end);
|
1996-05-17 23:50:10 +04:00
|
|
|
MVMEPROM_ARG2(start);
|
1996-05-17 23:31:46 +04:00
|
|
|
MVMEPROM_CALL(MVMEPROM_OUTSTRCRLF);
|
|
|
|
}
|