Asdrien
He/Him
Player (138)
Joined: 11/17/2014
Posts: 27
Location: France
Hi everyone ! Someone knows the way to open a ROM ? I want to see the ASM code for snes game.
Post subject: Re: open ROM
Editor, Skilled player (1405)
Joined: 3/31/2010
Posts: 2086
Asdrien wrote:
Hi everyone ! Someone knows the way to open a ROM ? I want to see the ASM code for snes game.
You can use a 65C816 Disassembler to translate the binary ROM file back into ASM code. Be warned however that a Disassembler generally cannot tell code and data apart and will try to translate everything into ASM code, regardless of whether it actually is code or not. As far as I know, there is no easy step for fixing this, and trying to sort out which parts of the ROM are code and which ones are data is a lot of tedious, manual work. After that, you still need to understand how exactly the game is actually programmed and how it works internally, which is probably even harder. Not saying it can't be done, but it will probably be really difficult and really time-consuming. Of course, knowing 65C816 ASM is vital too. Best of luck to you.
Asdrien
He/Him
Player (138)
Joined: 11/17/2014
Posts: 27
Location: France
Thank you for your reply. I have knowledge in ASM . It remains for me to be documented on this micro-controllor and try to extract what interests me .