summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/prot_fatfury2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/prot_fatfury2.h')
-rw-r--r--src/devices/bus/neogeo/prot_fatfury2.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/neogeo/prot_fatfury2.h b/src/devices/bus/neogeo/prot_fatfury2.h
index daa2d147faf..8c75e7f5d46 100644
--- a/src/devices/bus/neogeo/prot_fatfury2.h
+++ b/src/devices/bus/neogeo/prot_fatfury2.h
@@ -1,15 +1,15 @@
// license:BSD-3-Clause
// copyright-holders:S. Smith,David Haywood,Fabio Priuli
-#pragma once
+#ifndef MAME_BUS_NEOGEO_PROT_FATFURY2_H
+#define MAME_BUS_NEOGEO_PROT_FATFURY2_H
-#ifndef __FATFURY2_PROT__
-#define __FATFURY2_PROT__
+#pragma once
-extern const device_type FATFURY2_PROT;
+DECLARE_DEVICE_TYPE(NG_FATFURY2_PROT, fatfury2_prot_device)
#define MCFG_FATFURY2_PROT_ADD(_tag) \
- MCFG_DEVICE_ADD(_tag, FATFURY2_PROT, 0)
+ MCFG_DEVICE_ADD(_tag, NG_FATFURY2_PROT, 0)
class fatfury2_prot_device : public device_t
@@ -21,11 +21,11 @@ public:
DECLARE_READ16_MEMBER( protection_r );
DECLARE_WRITE16_MEMBER( protection_w );
- uint32_t m_prot_data;
-
protected:
virtual void device_start() override;
virtual void device_reset() override;
+
+ uint32_t m_prot_data;
};
-#endif
+#endif // MAME_BUS_NEOGEO_PROT_FATFURY2_H