summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos2.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-07-08 18:08:10 +1000
committer Vas Crabb <vas@vastheman.com>2018-07-08 18:08:10 +1000
commite56b1e0cdacec0a08d2f4c8921b403f430145743 (patch)
tree2cefaa4a9bb74db09ddbeda19670b391f669ae9c /src/mame/includes/namcos2.h
parentf0773a505bca5bf38a40c1db9cb7a73fbbf52d2f (diff)
more of the same (nw)
Diffstat (limited to 'src/mame/includes/namcos2.h')
-rw-r--r--src/mame/includes/namcos2.h49
1 files changed, 28 insertions, 21 deletions
diff --git a/src/mame/includes/namcos2.h b/src/mame/includes/namcos2.h
index c0edee4fc5b..3695b3e4333 100644
--- a/src/mame/includes/namcos2.h
+++ b/src/mame/includes/namcos2.h
@@ -7,6 +7,10 @@
Common functions & declarations for the Namco System 2 driver
***************************************************************************/
+#ifndef MAME_INCLUDES_NAMCOS2_H
+#define MAME_INCLUDES_NAMCOS2_H
+
+#pragma once
#include "machine/namco_c139.h"
#include "machine/namco_c148.h"
@@ -101,27 +105,28 @@ class namcos2_shared_state : public driver_device
{
public:
namcos2_shared_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_dspmaster(*this, "dspmaster"),
- m_dspslave(*this, "dspslave"),
- m_gametype(0),
- m_c68(*this, "c68"),
- m_master_intc(*this, "master_intc"),
- m_slave_intc(*this, "slave_intc"),
- m_sci(*this, "sci"),
- m_gpu(*this, "gpu"),
- m_c169_roz_videoram(*this, "rozvideoram", 0),
- m_c169_roz_gfxbank(0),
- m_c169_roz_mask(nullptr),
- m_c355_obj_gfxbank(0),
- m_c355_obj_palxor(0),
- m_maincpu(*this, "maincpu"),
- m_audiocpu(*this, "audiocpu"),
- m_slave(*this, "slave"),
- m_mcu(*this, "mcu"),
- m_gfxdecode(*this, "gfxdecode"),
- m_screen(*this, "screen"),
- m_palette(*this, "palette") { }
+ : driver_device(mconfig, type, tag)
+ , m_dspmaster(*this, "dspmaster")
+ , m_dspslave(*this, "dspslave")
+ , m_gametype(0)
+ , m_c68(*this, "c68")
+ , m_master_intc(*this, "master_intc")
+ , m_slave_intc(*this, "slave_intc")
+ , m_sci(*this, "sci")
+ , m_gpu(*this, "gpu")
+ , m_c169_roz_videoram(*this, "rozvideoram", 0)
+ , m_c169_roz_gfxbank(0)
+ , m_c169_roz_mask(nullptr)
+ , m_c355_obj_gfxbank(0)
+ , m_c355_obj_palxor(0)
+ , m_maincpu(*this, "maincpu")
+ , m_audiocpu(*this, "audiocpu")
+ , m_slave(*this, "slave")
+ , m_mcu(*this, "mcu")
+ , m_gfxdecode(*this, "gfxdecode")
+ , m_screen(*this, "screen")
+ , m_palette(*this, "palette")
+ { }
optional_device<cpu_device> m_dspmaster;
optional_device<cpu_device> m_dspslave;
@@ -468,3 +473,5 @@ extern void (*namcos2_kickstart)(running_machine &machine, int internal);
/**************************************************************/
/* Sound CPU support handlers - 6809 */
/**************************************************************/
+
+#endif // MAME_INCLUDES_NAMCOS2_H