move arm processor resource to generic location
[AROS.git] / arch / arm-raspi / boot / bc / vars.c
blob9c1904beb7844066e4bf8db5a3c8d32c3779f0e3
1 /*
2 Copyright © 2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Common screen console variables.
6 */
8 #include "bootconsole.h"
11 * Variables in this file are interntionally placed into .data section
12 * because they need to survive warm reboots.
15 /* Display buffer parameters. */
16 __attribute__((section(".data"))) unsigned char scr_Type = SCR_UNKNOWN;
17 __attribute__((section(".data"))) void *scr_FrameBuffer = 0; /* VRAM address */
18 __attribute__((section(".data"))) unsigned int scr_Width = 0; /* Display width in characters */
19 __attribute__((section(".data"))) unsigned int scr_Height = 0; /* Display height in characters */
21 /* Current output position (in characters) */
22 __attribute__((section(".data"))) unsigned int scr_XPos = 0;
23 __attribute__((section(".data"))) unsigned int scr_YPos = 0;