globals-target.c 485 B

123456789101112131415161718192021222324
  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. #include "qemu/osdep.h"
  9. #include "system/system.h"
  10. #ifdef TARGET_SPARC
  11. int graphic_width = 1024;
  12. int graphic_height = 768;
  13. int graphic_depth = 8;
  14. #elif defined(TARGET_M68K)
  15. int graphic_width = 800;
  16. int graphic_height = 600;
  17. int graphic_depth = 8;
  18. #else
  19. int graphic_width = 800;
  20. int graphic_height = 600;
  21. int graphic_depth = 32;
  22. #endif