trunk/src/emu/bus/snes/snes_slot.c
r241421 | r241422 | |
1360 | 1360 | logerror( "\tSize: %d megabits [%d]\n", 1 << (ROM[hilo_mode + 0x17] - 7), ROM[hilo_mode + 0x17]); |
1361 | 1361 | logerror( "\tSRAM: %d kilobits [%d]\n", ROM[hilo_mode + 0x18] * 8, ROM[hilo_mode + 0x18] ); |
1362 | 1362 | assert(ROM[hilo_mode + 0x19] < ARRAY_LENGTH(countries)); |
1363 | | logerror( "\tCountry: %s [%d]\n", countries[ROM[hilo_mode + 0x19]], ROM[hilo_mode + 0x19]); |
| 1363 | if (ROM[hilo_mode + 0x19] < 0x10) |
| 1364 | logerror( "\tCountry: %s [%d]\n", countries[ROM[hilo_mode + 0x19]], ROM[hilo_mode + 0x19]); |
| 1365 | else |
| 1366 | logerror( "\tCountry: Unknown [%d]\n", ROM[hilo_mode + 0x19]); |
1364 | 1367 | logerror( "\tLicense: %s [%X]\n", companies[ROM[hilo_mode + 0x1a]], ROM[hilo_mode + 0x1a]); |
1365 | 1368 | logerror( "\tVersion: 1.%d\n", ROM[hilo_mode + 0x1b]); |
1366 | 1369 | logerror( "\tInv Checksum: %X %X\n", ROM[hilo_mode + 0x1d], ROM[hilo_mode + 0x1c]); |