diff options
author | 2017-06-07 18:58:48 +0200 | |
---|---|---|
committer | 2017-06-07 18:58:48 +0200 | |
commit | fd1bb20b1b81daeb7ab925fb4f9e82161e2f2e4c (patch) | |
tree | abe9b9828baaa83d87cbd8c8b434cc174648b8b5 /src/devices/bus/c64/supercpu.cpp | |
parent | 7b2e155728f7725a0c62d9abb2b31be5a00eea91 (diff) |
some more device_add_mconfig in devices/bus (nw)
Diffstat (limited to 'src/devices/bus/c64/supercpu.cpp')
-rw-r--r-- | src/devices/bus/c64/supercpu.cpp | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/devices/bus/c64/supercpu.cpp b/src/devices/bus/c64/supercpu.cpp index b5353b24392..6b5b73b3265 100644 --- a/src/devices/bus/c64/supercpu.cpp +++ b/src/devices/bus/c64/supercpu.cpp @@ -57,10 +57,10 @@ ADDRESS_MAP_END //------------------------------------------------- -// MACHINE_CONFIG_START( c64_supercpu ) +// device_add_mconfig - add device configuration //------------------------------------------------- -static MACHINE_CONFIG_START( c64_supercpu ) +MACHINE_CONFIG_MEMBER( c64_supercpu_device::device_add_mconfig ) MCFG_CPU_ADD(G65816_TAG, G65816, 1000000) MCFG_CPU_PROGRAM_MAP(c64_supercpu_map) @@ -69,17 +69,6 @@ MACHINE_CONFIG_END //------------------------------------------------- -// machine_config_additions - device-specific -// machine configurations -//------------------------------------------------- - -machine_config_constructor c64_supercpu_device::device_mconfig_additions() const -{ - return MACHINE_CONFIG_NAME( c64_supercpu ); -} - - -//------------------------------------------------- // INPUT_PORTS( c64_supercpu ) //------------------------------------------------- |