summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/eeprompar.c
diff options
context:
space:
mode:
author Cowering <cowering@users.noreply.github.com>2015-06-30 09:02:11 -0500
committer Cowering <cowering@users.noreply.github.com>2015-07-08 23:37:59 -0500
commit8db46d73a25701178d8acc93510a6e81a86b3c4b (patch)
tree9248dd9388fb86f64be05e7d9c06b20f1bb3950c /src/emu/machine/eeprompar.c
parent1a32c4b76007999073b353532f74e7acee4b0491 (diff)
more pedantic fixes (NW)
Diffstat (limited to 'src/emu/machine/eeprompar.c')
-rw-r--r--src/emu/machine/eeprompar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/eeprompar.c b/src/emu/machine/eeprompar.c
index 1e70085a6e6..af575ec1419 100644
--- a/src/emu/machine/eeprompar.c
+++ b/src/emu/machine/eeprompar.c
@@ -120,7 +120,7 @@ eeprom_parallel_##_lowercase##_device::eeprom_parallel_##_lowercase##_device(con
: eeprom_parallel_##_baseclass##_device(mconfig, EEPROM_PARALLEL_##_uppercase, "Parallel EEPROM " #_uppercase " (" #_cells "x" #_bits ")", tag, owner, #_lowercase, __FILE__) \
{ \
static_set_size(*this, _cells, _bits); \
-}; \
+} \
const device_type EEPROM_PARALLEL_##_uppercase = &device_creator<eeprom_parallel_##_lowercase##_device>;
// standard 28XX class of 8-bit EEPROMs
DEFINE_PARALLEL_EEPROM_DEVICE(28xx, 2804, 2804, 8, 512)