aiie/globals.cpp

15 lines
369 B
C++
Raw Normal View History

#include "globals.h"
FileManager *g_filemanager = NULL;
Cpu *g_cpu = NULL;
VM *g_vm = NULL;
PhysicalDisplay *g_display = NULL;
PhysicalKeyboard *g_keyboard = NULL;
PhysicalSpeaker *g_speaker = NULL;
PhysicalPaddles *g_paddles = NULL;
2017-02-20 23:41:46 +00:00
PhysicalPrinter *g_printer = NULL;
2018-01-07 19:43:17 +00:00
VMui *g_ui;
2017-02-27 01:34:38 +00:00
int16_t g_volume = 15;
uint8_t g_displayType = 3; // FIXME m_perfectcolor
VMRam g_ram;