aiie/globals.h

26 lines
605 B
C
Raw Normal View History

#include <stdint.h>
#include "filemanager.h"
#include "cpu.h"
#include "vm.h"
#include "physicaldisplay.h"
#include "physicalkeyboard.h"
#include "physicalspeaker.h"
#include "physicalpaddles.h"
2017-02-20 23:41:46 +00:00
#include "physicalprinter.h"
2018-01-07 19:43:17 +00:00
#include "vmui.h"
#include "vmram.h"
extern FileManager *g_filemanager;
extern Cpu *g_cpu;
extern VM *g_vm;
extern PhysicalDisplay *g_display;
extern PhysicalKeyboard *g_keyboard;
extern PhysicalSpeaker *g_speaker;
extern PhysicalPaddles *g_paddles;
2017-02-20 23:41:46 +00:00
extern PhysicalPrinter *g_printer;
2018-01-07 19:43:17 +00:00
extern VMui *g_ui;
extern int16_t g_volume;
extern uint8_t g_displayType;
extern VMRam g_ram;