simple changes to the stack
[ppcskel.git] / console.h
1 /*
2         BootMii - a Free Software replacement for the Nintendo/BroadOn bootloader.
3         Requires mini.
4
5 Copyright (C) 2009              bLAStY <blasty@bootmii.org>
6 Copyright (C) 2009              John Kelley <wiidev@kelley.ca>
7
8 # This code is licensed to you under the terms of the GNU GPL, version 2;
9 # see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
10 */
11
12 #ifndef __CONSOLE_H__
13 #define __CONSOLE_H__
14
15 void init_fb(int vmode);
16 void print_str(const char *str, size_t len);
17 void print_str_noscroll(int x, int y, char *str);
18 int console_printf(const char *fmt, ...);
19 u32 *get_xfb(void);
20
21 extern unsigned char console_font_8x16[];
22
23 #endif
24