summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/stand/libbug/putchar.c
blob: 06c622693284474e37590e3222ee87689b2ca183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*	$NetBSD: putchar.c,v 1.2 2008/01/12 09:54:31 tsutsui Exp $	*/

/*
 * putchar: easier to do this with outstr than to add more macros to
 * handle byte passing on the stack
 */

#include <sys/types.h>
#include <machine/prom.h>

#include "stand.h"
#include "libbug.h"

void
putchar(int c)
{
	char ca[2];

	if (c == '\n')
		putchar('\r');
	ca[0] = c;
	mvmeprom_outstr(&ca[0], &ca[1]);
}