Previous 199869 Revisions Next

r32300 Tuesday 23rd September, 2014 at 07:29:44 UTC by Curt Coder
Fixed build. (nw)
[src/mess/drivers]a7800.c atari400.c

trunk/src/mess/drivers/a7800.c
r32299r32300
13151315   save_item(NAME(m_maria_flag));
13161316   
13171317   // install additional handlers, if needed
1318   switch (m_cartslot->exists() && m_cartslot->get_cart_type())
1318   if (m_cartslot->exists())
1319   switch (m_cartslot->get_cart_type())
13191320   {
13201321      case A78_HSC:
13211322         // ROM+NVRAM accesses for HiScore
trunk/src/mess/drivers/atari400.c
r32299r32300
17351735
17361736WRITE8_MEMBER(a400_state::disable_cart)
17371737{
1738   switch (m_cartslot->exists() && m_cartslot->get_cart_type())
1738   if (m_cartslot->exists())
1739   switch (m_cartslot->get_cart_type())
17391740   {
17401741      case A800_PHOENIX:
17411742      case A800_BLIZZARD:
r32299r32300
18341835   m_cart_disabled = 0;
18351836   m_last_offs = -1;
18361837
1837   switch (slot->exists() && slot->get_cart_type())
1838   if (slot->exists())
1839   switch (slot->get_cart_type())
18381840   {
18391841      case A800_8K:
18401842         m_maincpu->space(AS_PROGRAM).install_read_handler(0xa000, 0xbfff, read8_delegate(FUNC(a800_cart_slot_device::read_80xx),(a800_cart_slot_device*)slot));

Previous 199869 Revisions Next


© 1997-2024 The MAME Team