summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/fromanc2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/fromanc2.h')
-rw-r--r--src/mame/includes/fromanc2.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mame/includes/fromanc2.h b/src/mame/includes/fromanc2.h
index 8ef889fe92f..6bf0456c7f2 100644
--- a/src/mame/includes/fromanc2.h
+++ b/src/mame/includes/fromanc2.h
@@ -1,5 +1,9 @@
// license:BSD-3-Clause
// copyright-holders:Takahiro Nogi, Uki
+#ifndef MAME_INCLUDES_FROMANC2_H
+#define MAME_INCLUDES_FROMANC2_H
+
+#pragma once
#include "machine/gen_latch.h"
#include "machine/eepromser.h"
@@ -20,7 +24,8 @@ public:
m_rpalette(*this, "rpalette"),
m_soundlatch(*this, "soundlatch"),
m_soundlatch2(*this, "soundlatch2"),
- m_uart(*this, "uart") { }
+ m_uart(*this, "uart")
+ { }
void fromanc2(machine_config &config);
void fromancr(machine_config &config);
@@ -122,3 +127,5 @@ private:
void fromanc4_main_map(address_map &map);
void fromancr_main_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_FROMANC2_H