xref: /qemu/system/globals-target.c (revision 51209c2aed343a45f79b522706c807abbdcf01a3)
1 /*
2  * Global variables that should not exist (target specific)
3  *
4  * Copyright (c) 2003-2008 Fabrice Bellard
5  *
6  * SPDX-License-Identifier: MIT
7  */
8 
9 #include "qemu/osdep.h"
10 #include "system/system.h"
11 
12 #ifdef TARGET_SPARC
13 int graphic_width = 1024;
14 int graphic_height = 768;
15 int graphic_depth = 8;
16 #elif defined(TARGET_M68K)
17 int graphic_width = 800;
18 int graphic_height = 600;
19 int graphic_depth = 8;
20 #else
21 int graphic_width = 800;
22 int graphic_height = 600;
23 int graphic_depth = 32;
24 #endif
25