Тёмный
No video :(

Fire Shark Arcade PCB Repair - Sprite Corruption 

ShootTheCore
Подписаться 516
Просмотров 3,6 тыс.
50% 1

This Fire Shark arcade board had sprite corruption issues.
I diagnose the issue using a logic probe, then swap the faulty mask ROM out for the equivalent EPROM.

Опубликовано:

 

7 ноя 2019

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 26   
@loloC2C
@loloC2C 4 года назад
Great repair ! Toaplan Forever
@robmcraf2765
@robmcraf2765 4 года назад
Good job diagnosing and repairing cleanly.
@owlnonymous
@owlnonymous 4 года назад
Nice fix. Thanks for the video.
@GoodwinsPlace
@GoodwinsPlace 3 года назад
Good work. Another board saved.
@AlexUnderBase
@AlexUnderBase 4 года назад
Thank you sir !
@hoagtech
@hoagtech 2 года назад
Wow. Where did you connect the clips of your logic probe to? I see that white box with the springs..
@ShootTheCore
@ShootTheCore 2 года назад
You want to connect the logic probe up to a 5V supply source and Ground somewhere on the PCB or JAMMA harness, not an external supply. The probe uses the board's supply voltage as its reference for a High versus Low reading. I usually connect the probe to the Vss and GND on an EPROM or TTL Logic chip that I'm not probing, or on the JAMMA connector itself. The alligator clips on my logic probe are a little too large to stay connected to an EPROM easily, so I use a test clip - that's the white box with springs on it in the video. A test clip clamps on top of one the chips and makes it easier & safer to access the pins on the chip underneath.
@billwilliams6338
@billwilliams6338 4 года назад
SHOOTTHECORE, thanks for the help, I'm confused on the differences between an arcade games motherboard that is a Raster game compared to a Vector game. What are the differences in the sections on the arcade motherboard from a Raster game compared to a Vector game. Also the arcade monitors are different from raster to vector but what are the differences please?
@ShootTheCore
@ShootTheCore 4 года назад
I have no idea. I haven’t done any research or work on vector arcade boards.
@billwilliams6338
@billwilliams6338 4 года назад
@@ShootTheCore ok thanks
@RecreativosPiscis
@RecreativosPiscis 4 года назад
Nice repair and nice game. Congrats! I need to purchase some quality pliers like the one you used. Where can I buy it? Thanks
@ShootTheCore
@ShootTheCore 4 года назад
They're nothing fancy - I just got them from Amazon. Type "electronics tweezers" into Amazon Search and you'll have a bunch of options come up.
@billwilliams6338
@billwilliams6338 4 года назад
SHOOTTHECORE, What are the differences between a MASKED Rom and a PROM chip because both can't be reprogrammed, so what are the differences in using a Masked ROM chip compared to a PROM chip?
@ShootTheCore
@ShootTheCore 4 года назад
Masked ROM: The hexadecimal code is permanently etched inside the chip at the factory. Masked ROMs are the least expensive option for large production runs. EPROM: Erasable Programmable ROM. More expensive than mask ROMs, but used for both small production runs, or for code that was likely to change at the last minute. Most home game cartridges use only Mask ROMs, while arcade boards use a mix of mask ROMs and EPROMs. PROM: Programmable ROMs that can only be written once. Very rarely used in arcade games since they cost more than mask ROMs and weren't rewritable for last-minute code changes like EPROMs.
@billwilliams6338
@billwilliams6338 4 года назад
@@ShootTheCore thanks i'm just confused on the difference between a Masked ROM chips compared to a normal ROM chip & a PROM. It seems that a PROM, Masked ROM & normal ROM chips can only be programmed written to one time, the only difference is the price and data size the chip can hold it seems.
@tkb301
@tkb301 4 года назад
Which supergun are you using?
@ShootTheCore
@ShootTheCore 4 года назад
The H.A.S - Home Arcade System.
@billwilliams6338
@billwilliams6338 4 года назад
SHOOTTHECORE, when reading the ROMS data on your software program how can you tell if the data is good or bad or corrupted if you don't have the original ROM files to compare it against to? Can you tell where the game code is at and where the games test diagnostic program is at when reading the ROM data? because I can't tell where the arcade games test diagnostic program when reading a ROM chip how can you tell please?
@ShootTheCore
@ShootTheCore 4 года назад
The MAME project has done a wonderful job over the years of cataloging and emulating arcade games. As part of their preservation efforts, they have checksum values available for each ROM in their arcade database. When I dump the ROM from my board, I compare the checksum of the dump against what's in MAME. If they match, then I know the code in the ROM is good. As for the in-game diagnostics, every game has a unique diagnostic routine. Check the manual for that board and see how to access the test mode. Some games have a special jumper you set, DIP switch setting, or a button your press. Other games make you press the Test button on the JAMMA harness. Since each game diagnostic is unique, some games have better diagnostics than others. Some games check the ROMs very throughly while other games hardly check them at all.
@billwilliams6338
@billwilliams6338 4 года назад
@@ShootTheCore yes i understand but how did they get these checksum values? do you just add up all the ROMs contents data? When i read a ROM chips contents all I see is Hexidecimal values for each ROM address location on the software screen. I can't tell where the arcade games test diagnostic program starts or ends or which hexidecimal values are bad or wrong. How would you troubleshoot ROM chips if you didn't have the checksum values or ROM files from MAME? Most arcade power supplies use one filter capacitor 27,000uf microfarad capacitor, any reasons why such a very large capacitance value to be used it seems very large because most power supply use 4 filter caps at 10uf to 100uf at the most.
@ShootTheCore
@ShootTheCore 4 года назад
@@billwilliams6338 Q: yes i understand but how did they get these checksum values? do you just add up all the ROMs contents data? A: The checksum values can be calculated from the ROM dump using a CRC32 calculation utility like this: esrg.sourceforge.net/utils_win_up/md5sum/ Q: When i read a ROM chips contents all I see is Hexidecimal values for each ROM address location on the software screen. I can't tell where the arcade games test diagnostic program starts or ends or which hexidecimal values are bad or wrong. A: Yes, depending on which ROM you're looking at, it can hold compiled & assembled programming code for that board's CPU, or binary game assets like art, music, sound effects, etc. Each game's diagnostic program will be buried in all of that, and it will be different for every game. If you want to learn more about how a game is loading assets and how the diagnostic program is accessed, dig into the MAME driver for the game, and look at MAME's ROM loading and debugging functions. Disassembling the hexadecimal in the ROM back to to the original code requires a lot of knowledge of both reverse-compiling and assembly language for that game's CPU model. The MAME devs already did a lot of that work for you. Q: How would you troubleshoot ROM chips if you didn't have the checksum values or ROM files from MAME? A: You can troubleshoot whether the ROM is outputting data using either a logic probe (like in my video) or with a logic analyzer. Otherwise, dumping the file, calculating the CRC32 checksum and comparing the checksum to the MAME checksum is your best bet. The MAME checksums are widely available - there's nothing secret or proprietary about them. Q: Most arcade power supplies use one filter capacitor 27,000uf microfarad capacitor, any reasons why such a very large capacitance value to be used it seems very large because most power supply use 4 filter caps at 10uf to 100uf at the most. A: I haven't worked on arcade power supplies, nor am I a formally trained electrical engineer, so I don't have an answer to that question. Electronics is all a hobby for me, and I'm self-trained and learning as I go along.
@ArtemioUrbina
@ArtemioUrbina 3 года назад
@@billwilliams6338 you can also run mame like so: mame -romident And it will id all roms, and even use another mame utility called romcmp to compare sets of roms
@RaqiPinili
@RaqiPinili 4 года назад
Where did you buy your jamma harness?
@ShootTheCore
@ShootTheCore 4 года назад
I bought my JAMMA harness extension from "frank_fjs" on the Arcade Projects forums. "The Spaniard" on the Shmups forums sells them as well.
@trentjackson4816
@trentjackson4816 2 года назад
Easy greasy. It is a shame that there is no real money in this industry. Go and become a dentist or something you will make more money, deal with a better class of people and likely be happier too. All the best buddy 5☆
@Swenser
@Swenser Год назад
A 1 in a trillion chance that the ancient files you needed were sitting in your hard drive. Amazing. I can never find schematics , customized parts. What's your secret?
Далее
UNO!
00:18
Просмотров 757 тыс.
MiSTercade Setup and Configuration Tutorial
57:24
Просмотров 10 тыс.