summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emu.h')
-rw-r--r--src/emu/emu.h19
1 files changed, 7 insertions, 12 deletions
diff --git a/src/emu/emu.h b/src/emu/emu.h
index af3b6aada72..679687f772d 100644
--- a/src/emu/emu.h
+++ b/src/emu/emu.h
@@ -18,6 +18,9 @@
#ifndef __EMU_H__
#define __EMU_H__
+// get forward declarations before anything else
+#include "emufwd.h"
+
#include <list>
#include <forward_list>
#include <vector>
@@ -28,24 +31,19 @@
// core emulator headers -- must be first (profiler needs attotime, attotime needs xtal)
#include "emucore.h"
+#include "osdcore.h"
#include "eminline.h"
#include "xtal.h"
#include "attotime.h"
#include "profiler.h"
-// http interface helpers
-#include "http.h"
-
// commonly-referenced utilities imported from lib/util
+#include "corefile.h"
+#include "delegate.h"
+#include "hash.h"
#include "palette.h"
-#include "unicode.h"
-#include "strformat.h"
-#include "vecstream.h"
// emulator-specific utilities
-#include "hash.h"
-#include "fileio.h"
-#include "delegate.h"
#include "devdelegate.h"
// memory and address spaces
@@ -66,7 +64,6 @@
#include "addrmap.h" // Needs optional_device<> and required_device<>
#include "distate.h"
#include "dimemory.h"
-#include "opresolv.h"
#include "dipalette.h"
#include "digfx.h"
#include "diimage.h"
@@ -75,7 +72,6 @@
#include "divideo.h"
#include "dinvram.h"
#include "schedule.h"
-#include "dinetwork.h"
// machine and driver configuration
#include "mconfig.h"
@@ -83,7 +79,6 @@
#include "parameters.h"
// the running machine
-#include "main.h"
#include "machine.h"
#include "driver.h"