summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/iteagle_fpga.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/iteagle_fpga.h')
-rw-r--r--src/mame/machine/iteagle_fpga.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/machine/iteagle_fpga.h b/src/mame/machine/iteagle_fpga.h
index f0cef354373..7ed878c58ba 100644
--- a/src/mame/machine/iteagle_fpga.h
+++ b/src/mame/machine/iteagle_fpga.h
@@ -3,8 +3,8 @@
//*************************************
// iteagle fpga device
//*************************************
-#ifndef ITEAGLE_FPGA_H
-#define ITEAGLE_FPGA_H
+#ifndef MAME_MACHINE_ITEAGLE_FPGA_H
+#define MAME_MACHINE_ITEAGLE_FPGA_H
#include "machine/pci.h"
#include "machine/nvram.h"
@@ -59,7 +59,7 @@ public:
virtual machine_config_constructor device_mconfig_additions() const override;
required_device<nvram_device> m_rtc;
- required_device<scc85C30_device> m_scc1;
+ required_device<scc85c30_device> m_scc1;
void set_init_info(int version, int seq_init) {m_version=version; m_seq_init=seq_init;}
void set_irq_info(const char *tag, const int irq_num, const int serial_num) {
@@ -158,8 +158,8 @@ private:
};
-extern const device_type ITEAGLE_FPGA;
-extern const device_type ITEAGLE_EEPROM;
-extern const device_type ITEAGLE_PERIPH;
+DECLARE_DEVICE_TYPE(ITEAGLE_FPGA, iteagle_fpga_device)
+DECLARE_DEVICE_TYPE(ITEAGLE_EEPROM, iteagle_eeprom_device)
+DECLARE_DEVICE_TYPE(ITEAGLE_PERIPH, iteagle_periph_device)
-#endif
+#endif // MAME_MACHINE_ITEAGLE_FPGA_H
67'>67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134