diff options
author | 2013-03-26 15:18:37 +0000 | |
---|---|---|
committer | 2013-03-26 15:18:37 +0000 | |
commit | 051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch) | |
tree | 7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/emu/cpu/m6502/m65sc02.c | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/emu/cpu/m6502/m65sc02.c')
-rw-r--r-- | src/emu/cpu/m6502/m65sc02.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/m6502/m65sc02.c b/src/emu/cpu/m6502/m65sc02.c index a537885a22c..9624ad38dda 100644 --- a/src/emu/cpu/m6502/m65sc02.c +++ b/src/emu/cpu/m6502/m65sc02.c @@ -43,6 +43,6 @@ const device_type M65SC02 = &device_creator<m65sc02_device>; m65sc02_device::m65sc02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - r65c02_device(mconfig, M65SC02, "M65SC02", tag, owner, clock) + r65c02_device(mconfig, M65SC02, "M65SC02", tag, owner, clock, "m65sc02", __FILE__) { } |