Finding Debug Symbols when reverse engineering a game is the equivalent of buying a Strategy Guide, all the secrets are unlocked which is awesome but it also removes part of the fun of discovering what each part of the game does.
Debug symbols are an artifact of compiling a game from a higher level language (e.g. C\C++) down to a lower level language such as Assembly code.
They are used by developers to allow them to attach a debugger to the game and debug the code line-by-line with all the function and variable names in tact.
Developers should remove the debug symbols before the release of the game, a process called stripping executables
, but due to the high pressures of development and last-minute bugs they can be left in.
Since these are artifacts of compilation it is very unlikely for a game on a platform earlier than the Playstation 1 to contain debug symbols as they tended to be hand written in assembly code.
Also some platforms that used compiled code but were to be released on a small storage medium such as cartridge needed all the bytes they could get so it is very unlikely to get debug symbols on platforms such as Nintendo 64 or Game Boy Advance.
Platform Name | List of games that still contain debug symbols |
---|---|
Sony Playstation 1 | Playstation 1 Games with Debug Symbols |
Sony Playstation 2 | PS2 Demo Discs && PS2 Retail Games |
Sony Playstation Portable | Playstation Portable Games with Debug Symbols |
Nintendo DS | |
Nintendo 64 | None due to limitations of cart size. But we do have part of Turok source code: Turok 64 Official Source Code Analysis |
Nintendo GameCube | Nintendo Gamecube Games with Debug Symbols |
Nintendo Wii | Wii Games with Debug Symbols (Incomplete) |
Nintendo Wii U | Wii U Games with Debug Symbols |
Nintendo Switch | N/A Not a retro console yet |
Sega Saturn | |
Sega Dreamcast | Sega Dreamcast Games with Debug Symbols |
Microsoft Xbox | Original Xbox Games with Debug Symbols |
Microsoft Xbox 360 | N/A Not a retro console yet |
There are also a few platforms that may have games with debug symbols but it is currently unknown:
Read all about 007 Agent Under Fire for Nintendo Gamecube Reverse Engineering in this s...
Read all about Sega Dreamcast Games with Debug Symbols in this s...
Read all about Nintendo Gamecube Games with Debug Symbols in this s...
Read all about Playstation 1 Games with Debug Symbols in this s...
Read all about PS2 Official Software Development Kit (SDK) in this s...
Read all about Playstation Portable Games with Debug Symbols in this s...
Read all about PS2 Games with Debug Symbols (UnStripped Binaries) in this s...
Read all about Wii U Games with Debug symbols (UnStripped Binaries) in this s...
Read all about Original Xbox Games with Debug Symbols in this s...