aboutsummaryrefslogtreecommitdiff
path: root/src/include/btext.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2005-04-08 15:01:17 +0000
committerMichael Brown <mcb30@etherboot.org>2005-04-08 15:01:17 +0000
commit0ff80b477dcff0726ebdbed95e8a93971e59e82b (patch)
tree860b7150212a07c24a9529ea072f3fb12700974c /src/include/btext.h
parentde5d935135bd536666b5fd03445b04d2ea82f1b4 (diff)
downloadipxe-0ff80b477dcff0726ebdbed95e8a93971e59e82b.zip
ipxe-0ff80b477dcff0726ebdbed95e8a93971e59e82b.tar.gz
ipxe-0ff80b477dcff0726ebdbed95e8a93971e59e82b.tar.bz2
Merged mcb30-realmode-redesign back to HEAD
Diffstat (limited to 'src/include/btext.h')
-rw-r--r--src/include/btext.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/include/btext.h b/src/include/btext.h
index 15241cd..1d3f9e5 100644
--- a/src/include/btext.h
+++ b/src/include/btext.h
@@ -32,7 +32,7 @@ typedef struct boot_infos
/* Some infos about the current MacOS display */
u32 dispDeviceRect[4]; /* left,top,right,bottom */
u32 dispDeviceDepth; /* (8, 16 or 32) */
- u8* dispDeviceBase; /* base address (physical) */
+ u32 dispDeviceBase; /* base address (physical) */
u32 dispDeviceRowBytes; /* rowbytes (in bytes) */
u32 dispDeviceColorsOffset; /* Colormap (8 bits only) or 0 (*) */
@@ -56,21 +56,7 @@ typedef struct boot_infos
* Benjamin Herrenschmidt <benh@kernel.crashing.org>
*/
-extern void btext_clearscreen(void);
-
extern boot_infos_t disp_bi;
extern u32 boot_text_mapped;
-void btext_setup_display(u32 width, u32 height, u32 depth, u32 pitch,
- unsigned long address);
-void map_boot_text(void);
-
-void btext_drawchar(char c);
-void btext_drawstring(const char *str);
-void btext_drawhex(u32 v);
-
-void btext_putc(int c);
-
-void btext_init(void);
-
#endif /* _BTEXT_H */