summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mz2000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mz2000.cpp')
-rw-r--r--src/mame/drivers/mz2000.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/mame/drivers/mz2000.cpp b/src/mame/drivers/mz2000.cpp
index 93540e603e0..823ee098c44 100644
--- a/src/mame/drivers/mz2000.cpp
+++ b/src/mame/drivers/mz2000.cpp
@@ -18,19 +18,25 @@
****************************************************************************/
#include "emu.h"
+
#include "cpu/z80/z80.h"
-#include "machine/z80pio.h"
+#include "imagedev/cassette.h"
+#include "imagedev/flopdrv.h"
#include "machine/i8255.h"
-#include "machine/wd_fdc.h"
#include "machine/pit8253.h"
+#include "machine/rp5c15.h"
+#include "machine/wd_fdc.h"
+#include "machine/z80pio.h"
#include "sound/beep.h"
#include "sound/wave.h"
-#include "machine/rp5c15.h"
-#include "imagedev/cassette.h"
-#include "imagedev/flopdrv.h"
+
+#include "screen.h"
+#include "softlist.h"
+#include "speaker.h"
+
#include "formats/2d_dsk.h"
#include "formats/mz_cas.h"
-#include "softlist.h"
+
#define MASTER_CLOCK XTAL_17_73447MHz/5 /* TODO: was 4 MHz, but otherwise cassette won't work due of a bug with MZF support ... */