summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/blktiger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/blktiger.h')
-rw-r--r--src/mame/includes/blktiger.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/mame/includes/blktiger.h b/src/mame/includes/blktiger.h
index 712294c98fa..cbe2d1cd9ab 100644
--- a/src/mame/includes/blktiger.h
+++ b/src/mame/includes/blktiger.h
@@ -5,6 +5,10 @@
Black Tiger
***************************************************************************/
+#ifndef MAME_INCLUDES_BLKTIGER_H
+#define MAME_INCLUDES_BLKTIGER_H
+
+#pragma once
#include "video/bufsprite.h"
#include "emupal.h"
@@ -12,15 +16,16 @@
class blktiger_state : public driver_device
{
public:
- blktiger_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_spriteram(*this, "spriteram") ,
+ blktiger_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
+ m_spriteram(*this, "spriteram"),
m_txvideoram(*this, "txvideoram"),
m_mcu(*this, "mcu"),
m_audiocpu(*this, "audiocpu"),
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette") { }
+ m_palette(*this, "palette")
+ { }
/* memory pointers */
required_device<buffered_spriteram8_device> m_spriteram;
@@ -82,3 +87,5 @@ public:
void blktiger_sound_map(address_map &map);
void blktigerbl_io_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_BLKTIGER_H