diff options
Diffstat (limited to 'src/mess/machine/abc_hdc.c')
-rw-r--r-- | src/mess/machine/abc_hdc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/machine/abc_hdc.c b/src/mess/machine/abc_hdc.c index 284caf20b78..55d7722cd83 100644 --- a/src/mess/machine/abc_hdc.c +++ b/src/mess/machine/abc_hdc.c @@ -15,8 +15,8 @@ // MACROS / CONSTANTS //************************************************************************** -#define Z80_TAG "z80" -#define SASIBUS_TAG "sasi" +#define Z80_TAG "z80" +#define SASIBUS_TAG "sasi" @@ -122,9 +122,9 @@ machine_config_constructor abc_hdc_device::device_mconfig_additions() const abc_hdc_device::abc_hdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, ABC_HDC, "ABC HDC", tag, owner, clock), - device_abcbus_card_interface(mconfig, *this), - m_maincpu(*this, Z80_TAG), - m_sasibus(*this, SASIBUS_TAG) + device_abcbus_card_interface(mconfig, *this), + m_maincpu(*this, Z80_TAG), + m_sasibus(*this, SASIBUS_TAG) { } |