--- a/src/aica/armmem.c Sun Jul 05 13:54:48 2009 +1000 +++ b/src/aica/armmem.c Tue Mar 23 19:48:03 2010 +1000 @@ -141,7 +141,7 @@ return *(int32_t *)(aica_scratch_ram + addr - 0x00803000); } } - ERROR( "Attempted long read to undefined page: %08X at %08X", + WARN( "Attempted long read to undefined page: %08X at %08X", addr, armr.r[15] ); /* Undefined memory */ return 0; @@ -179,7 +179,7 @@ *(uint32_t *)(aica_scratch_ram + addr - 0x00803000) = value; break; default: - ERROR( "Attempted long write to undefined address: %08X", + WARN( "Attempted long write to undefined address: %08X", addr ); /* Undefined memory */ } @@ -238,7 +238,7 @@ *(uint8_t *)(aica_scratch_ram + addr - 0x00803000) = (uint8_t)value; break; default: - ERROR( "Attempted byte write to undefined address: %08X", + WARN( "Attempted byte write to undefined address: %08X", addr ); /* Undefined memory */ }