blob: 6097207ea7940d43fba212052c156b707e907f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $OpenBSD: outch.c,v 1.2 2001/07/04 08:09:28 niklas Exp $ */
/*
* bug routines -- assumes that the necessary sections of memory
* are preserved.
*/
#include <sys/types.h>
#include <machine/prom.h>
void
mvmeprom_outchr(a)
char a;
{
asm volatile ("or r2, r0, %0" : :"r" (a));
BUG_CALL(_OUTCHR);
}
|