(MESS) fixed iq151 and alphasmart regressions. (nw)

This commit is contained in:
Sandro Ronco 2014-04-01 18:09:57 +00:00
parent 8d0c2c825b
commit c1b4dcf941
3 changed files with 3 additions and 3 deletions

View File

@ -218,5 +218,5 @@ bool iq151cart_slot_device::call_softlist_load(software_list_device &swlist, con
void iq151cart_slot_device::get_default_card_software(astring &result)
{
software_get_default_slot(result, NULL);
software_get_default_slot(result, "basic6");
}

View File

@ -383,7 +383,7 @@ static MACHINE_CONFIG_START( alphasmart, alphasmart_state )
MCFG_CPU_ADD("maincpu", MC68HC11, XTAL_8MHz/2) // MC68HC11D0, XTAL is 8 Mhz, unknown divider
MCFG_CPU_PROGRAM_MAP(alphasmart_mem)
MCFG_CPU_IO_MAP(alphasmart_io)
MCFG_MC68HC11_CONFIG(0, 0, 0x00) // FIXME: internal ram should be 192, but the 68hc11 core doesn't handle internal RAM correctly
MCFG_MC68HC11_CONFIG(0, 192, 0x00)
MCFG_KS0066_F05_ADD("ks0066_0")
MCFG_HD44780_LCD_SIZE(2, 40)

View File

@ -331,7 +331,7 @@ INTERRUPT_GEN_MEMBER(iq151_state::iq151_vblank_interrupt)
IRQ_CALLBACK_MEMBER(iq151_state::iq151_irq_callback)
{
return m_pic->inta_r();
return m_pic->acknowledge();
}
TIMER_DEVICE_CALLBACK_MEMBER(iq151_state::cassette_timer)