mirror of
https://github.com/holub/mame
synced 2025-05-09 15:51:48 +03:00
Workaround for problem m4/v4 sets which drop to command-line (nw)
This commit is contained in:
parent
1bd6f172fe
commit
769e7eaf6e
@ -2436,6 +2436,7 @@ static READ8_HANDLER( characteriser_r )
|
|||||||
{
|
{
|
||||||
logerror("No Characteriser Table @ %04x", cpu_get_previouspc(&space->device()));
|
logerror("No Characteriser Table @ %04x", cpu_get_previouspc(&space->device()));
|
||||||
|
|
||||||
|
#if 0
|
||||||
/* a cheat ... many early games use a standard check */
|
/* a cheat ... many early games use a standard check */
|
||||||
int addr = cpu_get_reg(&space->device(), M6809_X);
|
int addr = cpu_get_reg(&space->device(), M6809_X);
|
||||||
UINT8 ret = space->read_byte(addr);
|
UINT8 ret = space->read_byte(addr);
|
||||||
@ -2444,6 +2445,8 @@ static READ8_HANDLER( characteriser_r )
|
|||||||
logerror("\n");
|
logerror("\n");
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
#endif
|
||||||
|
return 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG_CHR(("Characteriser read offset %02X \n",offset));
|
LOG_CHR(("Characteriser read offset %02X \n",offset));
|
||||||
|
Loading…
Reference in New Issue
Block a user