blob: c1fce2e74147e834d0fccdd1aa18222d56c65749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $OpenBSD: inchr.c,v 1.1 2001/06/26 21:58:04 smurph Exp $ */
/*
* bug routines -- assumes that the necessary sections of memory
* are preserved.
*/
#include <sys/types.h>
#include <machine/prom.h>
#include "stand.h"
#include "libbug.h"
/* returns 0 if no characters ready to read */
int
getchar()
{
int ret;
MVMEPROM_CALL(MVMEPROM_INCHR);
asm volatile ("mr %0, 3" : "=r" (ret));
return ret;
}
|