Merge pull request #3359 from palazzol/intvkbd

Corrected 6502 clock rate
This commit is contained in:
ajrhacker 2018-03-19 08:54:04 -04:00 committed by GitHub
commit a65cd40faf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -544,7 +544,7 @@ MACHINE_CONFIG_START(intv_state::intvkbd)
MCFG_CPU_MODIFY( "maincpu" )
MCFG_CPU_PROGRAM_MAP(intvkbd_mem)
MCFG_CPU_ADD("keyboard", M6502, XTAL(3'579'545)/2) /* Colorburst/2 */
MCFG_CPU_ADD("keyboard", M6502, XTAL(7'159'090)/8)
MCFG_CPU_PROGRAM_MAP(intvkbd2_mem)
MCFG_CPU_VBLANK_INT_DRIVER("screen", intv_state, intv_interrupt2)