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 |
r22859 | r22860 | |
---|---|---|
1384 | 1384 | UINT32 rom_size = m_rom->bytes(); |
1385 | 1385 | UINT8 *pointer = m_rom->base(); |
1386 | 1386 | |
1387 | if( rom_size > max_window_size ) | |
1388 | { | |
1389 | rom_size = max_window_size; | |
1390 | } | |
1391 | ||
1387 | 1392 | assert( window_size != 0 ); |
1388 | 1393 | |
1389 | 1394 | int start = 0; |
Previous | 199869 Revisions | Next |