summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/arch/ppc/pearpc/vfd.c
blob: 06485f2dc95c159b4b6aec92b07b066501bfea44 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 *   Creation Date: <2004/08/28 17:29:43 greg>
 *   Time-stamp: <2004/08/28 17:29:43 greg>
 *
 *	<vfd.c>
 *
 *	Simple text console
 *
 *   Copyright (C) 2004 Greg Watson
 *
 *   This program is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU General Public License
 *   as published by the Free Software Foundation
 *
 */

#include "config.h"
#include "libopenbios/bindings.h"
#include "pearpc/pearpc.h"

static int vfd_is_open;

static int
vfd_init( void )
{
	vfd_is_open = 1;
	return 0;
}

void
vfd_close( void )
{
}

int
vfd_draw_str( const char *str )
{
	if (!vfd_is_open)
		vfd_init();

	return 0;
}