Previous 199869 Revisions Next

r22860 Thursday 16th May, 2013 at 20:45:37 UTC by smf
Don't map more than 4mb of rom as it will overwrite ram. Only causes a problem for mrdrilr2 because the bios is part of a much larger rom, none of the other drivers have a region large enough to cause a problem. (nw)
[src/emu/cpu/psx]psx.c

trunk/src/emu/cpu/psx/psx.c
r22859r22860
13841384   UINT32 rom_size = m_rom->bytes();
13851385   UINT8 *pointer = m_rom->base();
13861386
1387   if( rom_size > max_window_size )
1388   {
1389      rom_size = max_window_size;
1390   }
1391
13871392   assert( window_size != 0 );
13881393
13891394   int start = 0;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team