hp64k: fix compile with OG's latest changes, seems to still work OK. (nw)

This commit is contained in:
arbee 2015-07-04 13:56:54 -04:00
parent ecb1a34e2d
commit 43f222fec6
2 changed files with 2 additions and 2 deletions

View File

@ -867,7 +867,7 @@ UINT16 hp_hybrid_cpu_device::RM(UINT16 addr)
return 0;
}
} else {
return m_direct->read_decrypted_word((offs_t)addr << 1);
return m_direct->read_word((offs_t)addr << 1);
}
}

View File

@ -1160,7 +1160,7 @@ static MACHINE_CONFIG_START(hp64k , hp64k_state)
MCFG_SCREEN_REFRESH_RATE(60)
MCFG_PALETTE_ADD_MONOCHROME_GREEN_HIGHLIGHT("palette")
MCFG_FD1791x_ADD("fdc" , XTAL_4MHz / 4)
MCFG_FD1791_ADD("fdc" , XTAL_4MHz / 4)
MCFG_WD_FDC_FORCE_READY
MCFG_WD_FDC_INTRQ_CALLBACK(WRITELINE(hp64k_state , hp64k_flp_intrq_w))
MCFG_WD_FDC_DRQ_CALLBACK(WRITELINE(hp64k_state , hp64k_flp_drq_w))