summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cocoloco.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cocoloco.cpp')
-rw-r--r--src/mame/drivers/cocoloco.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/mame/drivers/cocoloco.cpp b/src/mame/drivers/cocoloco.cpp
index 2dc58a884a5..e6a4f8b3fdf 100644
--- a/src/mame/drivers/cocoloco.cpp
+++ b/src/mame/drivers/cocoloco.cpp
@@ -188,18 +188,22 @@
**************************************************************************************/
-
-#define MASTER_CLOCK XTAL_20MHz /* confirmed */
-#define CPU_CLOCK MASTER_CLOCK / 16 /* confirmed */
-#define SND_CLOCK MASTER_CLOCK / 8 /* confirmed */
-
#include "emu.h"
+
#include "cpu/m6502/m6502.h"
-#include "sound/ay8910.h"
#include "machine/netlist.h"
+#include "sound/ay8910.h"
+#include "screen.h"
+#include "speaker.h"
+
#include "netlist/devices/net_lib.h"
+#define MASTER_CLOCK XTAL_20MHz /* confirmed */
+#define CPU_CLOCK MASTER_CLOCK / 16 /* confirmed */
+#define SND_CLOCK MASTER_CLOCK / 8 /* confirmed */
+
+
class cocoloco_state : public driver_device
{
public: