2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
5 Desc: Common screen console variables.
8 #include <bootconsole.h>
13 * Variables in this file are interntionally placed into .data section
14 * because they need to survive warm reboots.
17 /* Display buffer parameters. */
18 __attribute__((section(".data"))) void *scr_FrameBuffer
= VGA_TEXT_ADDR
; /* VRAM address */
19 __attribute__((section(".data"))) unsigned int scr_Width
= VGA_TEXT_WIDTH
; /* Display width in characters */
20 __attribute__((section(".data"))) unsigned int scr_Height
= VGA_TEXT_HEIGHT
; /* Display height in characters */
22 /* Current output position (in characters) */
23 __attribute__((section(".data"))) unsigned int scr_XPos
= 0;
24 __attribute__((section(".data"))) unsigned int scr_YPos
= 0;