summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h83048.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h83048.h')
-rw-r--r--src/devices/cpu/h8/h83048.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/devices/cpu/h8/h83048.h b/src/devices/cpu/h8/h83048.h
index 367313290fc..4dcb95103db 100644
--- a/src/devices/cpu/h8/h83048.h
+++ b/src/devices/cpu/h8/h83048.h
@@ -19,8 +19,8 @@
***************************************************************************/
-#ifndef __H83048_H__
-#define __H83048_H__
+#ifndef MAME_CPU_H8_H83048_H
+#define MAME_CPU_H8_H83048_H
#include "h8h.h"
#include "h8_adc.h"
@@ -32,13 +32,14 @@
class h83048_device : public h8h_device {
public:
- h83048_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);
h83048_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ8_MEMBER(syscr_r);
DECLARE_WRITE8_MEMBER(syscr_w);
protected:
+ h83048_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t start);
+
required_device<h8h_intc_device> intc;
required_device<h8_adc_device> adc;
required_device<h8_port_device> port1;
@@ -93,9 +94,9 @@ public:
h83047_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
-extern const device_type H83044;
-extern const device_type H83045;
-extern const device_type H83047;
-extern const device_type H83048;
+DECLARE_DEVICE_TYPE(H83044, h83044_device)
+DECLARE_DEVICE_TYPE(H83045, h83045_device)
+DECLARE_DEVICE_TYPE(H83047, h83047_device)
+DECLARE_DEVICE_TYPE(H83048, h83048_device)
-#endif
+#endif // MAME_CPU_H8_H83048_H