summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/super6.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/super6.h')
-rw-r--r--src/mame/includes/super6.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mame/includes/super6.h b/src/mame/includes/super6.h
index 1fecf3ae3aa..d9641bda2a3 100644
--- a/src/mame/includes/super6.h
+++ b/src/mame/includes/super6.h
@@ -31,19 +31,19 @@ class super6_state : public driver_device
{
public:
super6_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, Z80_TAG),
- m_ctc(*this, Z80CTC_TAG),
- m_dart(*this, Z80DART_TAG),
- m_dma(*this, Z80DMA_TAG),
- m_pio(*this, Z80PIO_TAG),
- m_fdc(*this, WD2793_TAG),
- m_brg(*this, BR1945_TAG),
- m_ram(*this, RAM_TAG),
- m_floppy0(*this, WD2793_TAG":0"),
- m_floppy1(*this, WD2793_TAG":1"),
- m_rom(*this, Z80_TAG),
- m_j7(*this, "J7")
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, Z80_TAG)
+ , m_ctc(*this, Z80CTC_TAG)
+ , m_dart(*this, Z80DART_TAG)
+ , m_dma(*this, Z80DMA_TAG)
+ , m_pio(*this, Z80PIO_TAG)
+ , m_fdc(*this, WD2793_TAG)
+ , m_brg(*this, BR1945_TAG)
+ , m_ram(*this, RAM_TAG)
+ , m_floppy0(*this, WD2793_TAG":0")
+ , m_floppy1(*this, WD2793_TAG":1")
+ , m_rom(*this, Z80_TAG)
+ , m_j7(*this, "J7")
{ }
void super6(machine_config &config);