summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mcr68.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mcr68.h')
-rw-r--r--src/mame/includes/mcr68.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mame/includes/mcr68.h b/src/mame/includes/mcr68.h
index 8b2ad1cd1ee..4e3b6b53f51 100644
--- a/src/mame/includes/mcr68.h
+++ b/src/mame/includes/mcr68.h
@@ -5,6 +5,10 @@
Midway MCR-68k system
***************************************************************************/
+#ifndef MAME_INCLUDES_MCR68_H
+#define MAME_INCLUDES_MCR68_H
+
+#pragma once
#include "machine/timer.h"
#include "machine/watchdog.h"
@@ -17,8 +21,8 @@
class mcr68_state : public driver_device
{
public:
- mcr68_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ mcr68_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_sounds_good(*this, "sg"),
m_turbo_cheap_squeak(*this, "tcs"),
m_cvsd_sound(*this, "cvsd"),
@@ -101,3 +105,5 @@ private:
required_device<ptm6840_device> m_ptm;
};
+
+#endif // MAME_INCLUDES_MCR68_H