1/*
2 * Copyright 2012, Axel D��rfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <boot/platform/generic/text_console.h>
8
9
10void
11console_clear_screen(void)
12{
13}
14
15
16int32
17console_width(void)
18{
19	return 80;
20}
21
22
23int32
24console_height(void)
25{
26	return 25;
27}
28
29
30void
31console_set_cursor(int32 x, int32 y)
32{
33}
34
35
36void
37console_show_cursor(void)
38{
39}
40
41
42void
43console_hide_cursor(void)
44{
45}
46
47
48void
49console_set_color(int32 foreground, int32 background)
50{
51}
52
53
54int
55console_wait_for_key(void)
56{
57	return 0;
58}
59
60
61status_t
62console_init(void)
63{
64	return B_OK;
65}
66