Location of 720 sound eproms

Torin

Well-known member

Donor 2013
Joined
Feb 4, 2011
Messages
3,691
Reaction score
757
Location
Boise, Idaho
I've checked the manual and schematics but can't find the location of the 720 Sound eproms. I think they would be in the same location as Paperboy and that there are only two or three roms, but I'm not sure. Just need the location so I can test them. Thanks for the help.
 
Code:
 1447      ROM_REGION( 0x10000, "audiocpu", 0 )     /* 64k for 6502 code */
 1448      ROM_LOAD( "136047-2134.2a",  0x004000, 0x004000, CRC(0db4ca28))
 1449      ROM_LOAD( "136047-1135.2b",  0x008000, 0x004000, CRC(b1f157d0))
 1450      ROM_LOAD( "136047-2136.2cd", 0x00c000, 0x004000, CRC(00b06bec))

The numbers after the hyphen may be different, depending on the version of the game code. However, the locations (after the dot) won't change.
 
Awesome. Thanks!


Code:
 1447      ROM_REGION( 0x10000, "audiocpu", 0 )     /* 64k for 6502 code */
 1448      ROM_LOAD( "136047-2134.2a",  0x004000, 0x004000, CRC(0db4ca28))
 1449      ROM_LOAD( "136047-1135.2b",  0x008000, 0x004000, CRC(b1f157d0))
 1450      ROM_LOAD( "136047-2136.2cd", 0x00c000, 0x004000, CRC(00b06bec))

The numbers after the hyphen may be different, depending on the version of the game code. However, the locations (after the dot) won't change.
 
Back
Top Bottom