summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-04-20 11:57:42 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-04-20 11:57:42 -0400
commit536ae10aff062153a49cab48e1701002de06eb8e (patch)
tree785b52c542c5d47f6c9dd8eb261fc39199edcc6b
parent94dda95b385ccf898f19a1820a6237030689313f (diff)
apple2: Remove dependency on legacy header (nw)
-rw-r--r--src/mame/drivers/apple2.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mame/drivers/apple2.cpp b/src/mame/drivers/apple2.cpp
index a9a0398b6bd..6a32b1fbdd4 100644
--- a/src/mame/drivers/apple2.cpp
+++ b/src/mame/drivers/apple2.cpp
@@ -39,13 +39,20 @@ II Plus: RAM options reduced to 16/32/48 KB.
************************************************************************/
#include "emu.h"
-#include "includes/apple2.h"
#include "video/apple2.h"
+#include "cpu/m6502/m6502.h"
+
+#include "imagedev/cassette.h"
+#include "imagedev/flopdrv.h"
+
#include "machine/74259.h"
#include "machine/bankdev.h"
+#include "machine/kb3600.h"
+#include "machine/ram.h"
#include "machine/timer.h"
-#include "imagedev/flopdrv.h"
+
+#include "sound/spkrdev.h"
#include "bus/a2bus/a2alfam2.h"
#include "bus/a2bus/a2applicard.h"