summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/divebomb.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-06-29 23:59:26 +1000
committer Vas Crabb <vas@vastheman.com>2018-06-29 23:59:26 +1000
commitf369cf9945ca7b1fea6c47dc88247431f0681b93 (patch)
treee9c777ef26c8699bd246a5976d62208e750f8f93 /src/mame/includes/divebomb.h
parent94635c5ca0e4a1f4c0dcf438e589aba9071db5a5 (diff)
misc cleanup (nw)
Diffstat (limited to 'src/mame/includes/divebomb.h')
-rw-r--r--src/mame/includes/divebomb.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mame/includes/divebomb.h b/src/mame/includes/divebomb.h
index 3fb38b4b3d9..0bfc21f00c8 100644
--- a/src/mame/includes/divebomb.h
+++ b/src/mame/includes/divebomb.h
@@ -5,6 +5,11 @@
Kyuukoukabakugekitai - Dive Bomber Squad
*************************************************************************/
+#ifndef MAME_INCLUDES_DIVEBOMB_H
+#define MAME_INCLUDES_DIVEBOMB_H
+
+#pragma once
+
#include "cpu/z80/z80.h"
#include "machine/gen_latch.h"
@@ -22,7 +27,7 @@ public:
: driver_device(mconfig, type, tag)
, m_spritecpu(*this, "spritecpu")
, m_fgcpu(*this, "fgcpu")
- , m_rozcpucpu(*this, "rozcpu")
+ , m_rozcpu(*this, "rozcpu")
, m_rozbank(*this, "rozbank")
, m_fgram(*this, "fgram")
, m_spriteram(*this, "spriteram")
@@ -40,7 +45,7 @@ public:
private:
required_device<cpu_device> m_spritecpu;
required_device<cpu_device> m_fgcpu;
- required_device<cpu_device> m_rozcpucpu;
+ required_device<cpu_device> m_rozcpu;
required_memory_bank m_rozbank;
required_shared_ptr<uint8_t> m_fgram;
required_shared_ptr<uint8_t> m_spriteram;
@@ -86,3 +91,5 @@ private:
void divebomb_spritecpu_iomap(address_map &map);
void divebomb_spritecpu_map(address_map &map);
};
+
+#endif // MAME_INCLUDES_DIVEBOMB_H