- Removed unnecessary casts.
[AROS.git] / arch / all-native / bootconsole / vars.c
blob0c3f7d2ccf1de2df79128a56281033906c0a14cf
1 /*
2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Common screen console variables.
6 */
8 #include <bootconsole.h>
10 #include "console.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;