blob: b0a7c9ebc92e23c3018b485cc27a2bafe17dbf7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* bug routines -- assumes that the necessary sections of memory
* are preserved.
*/
#include <sys/types.h>
#include <machine/prom.h>
void
mvmeprom_outstr(start, end)
char *start, *end;
{
asm volatile ("movl %0, sp@-" : "=a" (start));
asm volatile ("movl %0, sp@-" : "=a" (end));
MVMEPROM_CALL(MVMEPROM_OUTSTR);
}
|