summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/holeland.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/holeland.h')
-rw-r--r--src/mame/includes/holeland.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mame/includes/holeland.h b/src/mame/includes/holeland.h
index 2c4897bd223..40e3b0644b9 100644
--- a/src/mame/includes/holeland.h
+++ b/src/mame/includes/holeland.h
@@ -5,6 +5,10 @@
Hole Land
*************************************************************************/
+#ifndef MAME_INCLUDES_HOLELAND_H
+#define MAME_INCLUDES_HOLELAND_H
+
+#pragma once
#include "machine/74259.h"
#include "emupal.h"
@@ -12,15 +16,16 @@
class holeland_state : public driver_device
{
public:
- holeland_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ holeland_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
m_latch(*this, "latch"),
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
- m_spriteram(*this, "spriteram") { }
+ m_spriteram(*this, "spriteram")
+ { }
void crzrally(machine_config &config);
void holeland(machine_config &config);
@@ -64,3 +69,5 @@ private:
void holeland_map(address_map &map);
void io_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_HOLELAND_H