diff options
Diffstat (limited to 'src/mame/drivers/nes.cpp')
-rw-r--r-- | src/mame/drivers/nes.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/nes.cpp b/src/mame/drivers/nes.cpp index 308f9a3a60a..3e6fcaaa880 100644 --- a/src/mame/drivers/nes.cpp +++ b/src/mame/drivers/nes.cpp @@ -110,8 +110,8 @@ MACHINE_CONFIG_END static MACHINE_CONFIG_DERIVED( nespal, nes ) /* basic machine hardware */ -// MCFG_CPU_MODIFY("maincpu") -// MCFG_CPU_CLOCK(PAL_CLOCK) // this doesn't get inherited by the APU with DERIVED_CLOCK! +// MCFG_CPU_MODIFY("maincpu") +// MCFG_CPU_CLOCK(PAL_CLOCK) // this doesn't get inherited by the APU with DERIVED_CLOCK! MCFG_CPU_REPLACE("maincpu", N2A03, PAL_CLOCK) MCFG_CPU_PROGRAM_MAP(nes_map) @@ -135,8 +135,8 @@ MACHINE_CONFIG_END static MACHINE_CONFIG_DERIVED( dendy, nes ) /* basic machine hardware */ -// MCFG_CPU_MODIFY( "maincpu" ) -// MCFG_CPU_CLOCK( 26601712/15 ) // this doesn't get inherited by the APU with DERIVED_CLOCK! +// MCFG_CPU_MODIFY( "maincpu" ) +// MCFG_CPU_CLOCK( 26601712/15 ) // this doesn't get inherited by the APU with DERIVED_CLOCK! MCFG_CPU_REPLACE("maincpu", N2A03, 26601712/15 )/* 26.601712MHz / 15 == 1.77344746666... MHz */ MCFG_CPU_PROGRAM_MAP(nes_map) |