blob: 31af388dc92b68c84ddd26cbf1e6db0a8b572563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 1996 David S. Miller (dm@sgi.com)
*/
#include <linux/init.h>
#include <asm/sgialib.h>
void prom_putchar(char c)
{
ULONG cnt;
CHAR it = c;
ArcWrite(1, &it, 1, &cnt);
}
char __init prom_getchar(void)
{
ULONG cnt;
CHAR c;
ArcRead(0, &c, 1, &cnt);
return c;
}
|