summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/timelimt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/timelimt.h')
-rw-r--r--src/mame/includes/timelimt.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mame/includes/timelimt.h b/src/mame/includes/timelimt.h
index ce85c84b76b..28bab011a61 100644
--- a/src/mame/includes/timelimt.h
+++ b/src/mame/includes/timelimt.h
@@ -1,20 +1,25 @@
// license:BSD-3-Clause
// copyright-holders:Ernesto Corvi
+#ifndef MAME_INCLUDES_TIMELIMT_H
+#define MAME_INCLUDES_TIMELIMT_H
+
+#pragma once
#include "emupal.h"
class timelimt_state : public driver_device
{
public:
- timelimt_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ timelimt_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_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette"),
m_videoram(*this, "videoram"),
m_bg_videoram(*this, "bg_videoram"),
- m_spriteram(*this, "spriteram") { }
+ m_spriteram(*this, "spriteram")
+ { }
void timelimt(machine_config &config);
@@ -60,3 +65,5 @@ protected:
void sound_io_map(address_map &map);
void sound_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_TIMELIMT_H