Removal of non-Haiku target platform logic from build system (part 1.)
[haiku.git] / src / tests / system / boot / loader / platform_console.cpp
blob50512ae85fa75a22abc46138044cfd017d083565
1 /*
2 * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <boot/platform/generic/text_console.h>
10 void
11 console_clear_screen(void)
16 int32
17 console_width(void)
19 return 80;
23 int32
24 console_height(void)
26 return 25;
30 void
31 console_set_cursor(int32 x, int32 y)
36 void
37 console_show_cursor(void)
42 void
43 console_hide_cursor(void)
48 void
49 console_set_color(int32 foreground, int32 background)
54 int
55 console_wait_for_key(void)
57 return 0;
61 status_t
62 console_init(void)
64 return B_OK;