summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sonson.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sonson.h')
-rw-r--r--src/mame/includes/sonson.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mame/includes/sonson.h b/src/mame/includes/sonson.h
index 4656491d16d..26d9f7e64ab 100644
--- a/src/mame/includes/sonson.h
+++ b/src/mame/includes/sonson.h
@@ -5,21 +5,26 @@
Son Son
*************************************************************************/
+#ifndef MAME_INCLUDES_SONSON_H
+#define MAME_INCLUDES_SONSON_H
+
+#pragma once
#include "emupal.h"
class sonson_state : public driver_device
{
public:
- sonson_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ sonson_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
m_spriteram(*this, "spriteram"),
m_audiocpu(*this, "audiocpu"),
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette") { }
+ m_palette(*this, "palette")
+ { }
void sonson(machine_config &config);
@@ -53,3 +58,5 @@ private:
void main_map(address_map &map);
void sound_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_SONSON_H