summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gradius3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gradius3.h')
-rw-r--r--src/mame/includes/gradius3.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mame/includes/gradius3.h b/src/mame/includes/gradius3.h
index 9bc9b099d85..68fb26ce4ec 100644
--- a/src/mame/includes/gradius3.h
+++ b/src/mame/includes/gradius3.h
@@ -5,6 +5,10 @@
Gradius 3
*************************************************************************/
+#ifndef MAME_INCLUDES_GRADIUS3_H
+#define MAME_INCLUDES_GRADIUS3_H
+
+#pragma once
#include "machine/timer.h"
#include "sound/k007232.h"
@@ -15,8 +19,8 @@
class gradius3_state : public driver_device
{
public:
- gradius3_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ gradius3_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_gfxram(*this, "k052109"),
m_gfxrom(*this, "k051960"),
m_maincpu(*this, "maincpu"),
@@ -24,7 +28,8 @@ public:
m_subcpu(*this, "sub"),
m_k007232(*this, "k007232"),
m_k052109(*this, "k052109"),
- m_k051960(*this, "k051960") { }
+ m_k051960(*this, "k051960")
+ { }
void gradius3(machine_config &config);
@@ -73,3 +78,5 @@ private:
void gradius3_map2(address_map &map);
void gradius3_s_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_GRADIUS3_H