summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bottom9.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bottom9.h')
-rw-r--r--src/mame/includes/bottom9.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/mame/includes/bottom9.h b/src/mame/includes/bottom9.h
index f2813eaba65..34f8901c2f0 100644
--- a/src/mame/includes/bottom9.h
+++ b/src/mame/includes/bottom9.h
@@ -5,6 +5,11 @@
Bottom of the Ninth
*************************************************************************/
+#ifndef MAME_INCLUDES_BOTTOM9_H
+#define MAME_INCLUDES_BOTTOM9_H
+
+#pragma once
+
#include "sound/k007232.h"
#include "video/k052109.h"
#include "video/k051960.h"
@@ -15,8 +20,8 @@
class bottom9_state : public driver_device
{
public:
- bottom9_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ bottom9_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
m_k007232_1(*this, "k007232_1"),
@@ -24,7 +29,8 @@ public:
m_k052109(*this, "k052109"),
m_k051960(*this, "k051960"),
m_k051316(*this, "k051316"),
- m_palette(*this, "palette") { }
+ m_palette(*this, "palette")
+ { }
/* misc */
int m_video_enable;
@@ -66,3 +72,5 @@ public:
void audio_map(address_map &map);
void main_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_BOTTOM9_H