mirror of
https://github.com/holub/mame
synced 2025-07-05 01:48:29 +03:00
fidel68k cart test
This commit is contained in:
parent
add69b7d8a
commit
d13f3f0d10
@ -162,7 +162,12 @@ DEVICE_IMAGE_LOAD_MEMBER(fidel68k_state, eag_cartridge)
|
|||||||
READ8_MEMBER(fidel68k_state::eag_cart_r)
|
READ8_MEMBER(fidel68k_state::eag_cart_r)
|
||||||
{
|
{
|
||||||
if (m_cart->exists())
|
if (m_cart->exists())
|
||||||
|
{
|
||||||
|
static int yay=0;
|
||||||
|
if (!yay) { printf("Yay!\n"); yay=1; }
|
||||||
|
|
||||||
return m_cart->read_rom(space, offset);
|
return m_cart->read_rom(space, offset);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user