summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fortecar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fortecar.cpp')
-rw-r--r--src/mame/drivers/fortecar.cpp20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/mame/drivers/fortecar.cpp b/src/mame/drivers/fortecar.cpp
index 3975a3cbeb9..b39d8ad14b7 100644
--- a/src/mame/drivers/fortecar.cpp
+++ b/src/mame/drivers/fortecar.cpp
@@ -308,26 +308,28 @@
**************************************************************************************************/
-
-#define MASTER_CLOCK XTAL_12MHz
-#define CPU_CLOCK (MASTER_CLOCK/4)
-#define CRTC_CLOCK (MASTER_CLOCK/8)
-#define AY_CLOCK (MASTER_CLOCK/8)
-
#include "emu.h"
#include "cpu/z80/z80.h"
#include "machine/eepromser.h"
-#include "machine/watchdog.h"
-#include "sound/ay8910.h"
#include "machine/i8255.h"
+#include "machine/nvram.h"
#include "machine/v3021.h"
+#include "machine/watchdog.h"
+#include "sound/ay8910.h"
#include "video/mc6845.h"
-#include "machine/nvram.h"
#include "video/resnet.h"
+#include "screen.h"
+#include "speaker.h"
#include "fortecrd.lh"
+#define MASTER_CLOCK XTAL_12MHz
+#define CPU_CLOCK (MASTER_CLOCK/4)
+#define CRTC_CLOCK (MASTER_CLOCK/8)
+#define AY_CLOCK (MASTER_CLOCK/8)
+
+
class fortecar_state : public driver_device
{
public: