summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/ramcard16k.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/ramcard16k.h')
-rw-r--r--src/devices/bus/a2bus/ramcard16k.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/devices/bus/a2bus/ramcard16k.h b/src/devices/bus/a2bus/ramcard16k.h
index abfceec35d9..43e8ca8b535 100644
--- a/src/devices/bus/a2bus/ramcard16k.h
+++ b/src/devices/bus/a2bus/ramcard16k.h
@@ -8,8 +8,10 @@
*********************************************************************/
-#ifndef __A2BUS_RAMCARD16K__
-#define __A2BUS_RAMCARD16K__
+#ifndef MAME_BUS_A2BUS_RAMCARD16K_H
+#define MAME_BUS_A2BUS_RAMCARD16K_H
+
+#pragma once
#include "a2bus.h"
@@ -23,10 +25,11 @@ class a2bus_ramcard_device:
{
public:
// construction/destruction
- a2bus_ramcard_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
a2bus_ramcard_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
+ a2bus_ramcard_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
+
virtual void device_start() override;
virtual void device_reset() override;
@@ -49,6 +52,6 @@ private:
};
// device type definition
-extern const device_type A2BUS_RAMCARD16K;
+DECLARE_DEVICE_TYPE(A2BUS_RAMCARD16K, a2bus_ramcard_device)
-#endif /* __A2BUS_RAMCARD16K__ */
+#endif // MAME_BUS_A2BUS_RAMCARD16K_H