mirror of
https://github.com/holub/mame
synced 2025-04-21 16:01:56 +03:00
[AW] A little magic from ElSemi to make the Atomiswave BIOS try to be more verbose, but our video emulation isn't good enough to cooperate.
This commit is contained in:
parent
e05a67c0f2
commit
778117985e
@ -745,6 +745,14 @@ READ64_HANDLER( dc_modem_r )
|
||||
UINT64 shift;
|
||||
|
||||
reg = decode_reg_64(offset, mem_mask, &shift);
|
||||
|
||||
// from ElSemi: this makes Atomiswave do it's "verbose boot" with a Sammy logo and diagnostics instead of just running the cart.
|
||||
// our PVR emulation is apparently not good enough for that to work yet though.
|
||||
if ((reg == 0x280/4) && (mem_mask == U64(0xffffffff00000000)))
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
mame_printf_verbose("MODEM: Unmapped read %08x\n", 0x600000+reg*4);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user