src | ||
tools | ||
.gitignore | ||
.gitmodules | ||
ladx.md5 | ||
Makefile | ||
README.md |
Links Awakening DX Disassembly
Disassembly of one of my favorite games. Taking it easy for now.
Theses sources reproduce a valid build of Legend of Zelda, The - Link's Awakening DX (U) (V1.0) [C][!].gbc
MD5 - 07C211479386825042EFB4AD31BB525F
Usage
- Install rbgds (version >= 0.2.5 required).
make all
Overview
This repository produces a valid Zelda DX ROM from several different inputs:
- Disassembled and labeled assembly code (in
./src
), - Extracted PNG graphics (in
./src/gfx
), - Extracted dialog texts (in
./src/text
), - Extracted maps (in
./src/data/maps
), - The original ROM (used to fill-in sections not disassembled yet).
Status
- Bank 0: disassembled, 35% documented
- Bank 1: disassembled, 50% documented
- Bank 2: disassembled, 20% documented
- Bank 3: disassembled
- Bank 4: disassembled
- Other banks: not disassembled yet
- Memory: 20% documented
- Dialogs: extracted, 100%
- Graphics: extracted, 100%
- Maps:
- headers: extracted, 100%
- minimaps: extracted, 100%
- layouts: extracted, 100%
- blocks : extracted, further formatting work needed
- Wrap data, Chest data, Palettes: not extracted
- Music: not extracted
How to label code
Disassembling the code is easy, and computers are very good at it. What is difficult is to label the original code, finding the meaning behind of function calls and memory manipulations.
Of course we can just read the disassembled sources in a text editor, understand what the assembly does, and label it accordingly. However this is a slow and difficult process–and, fortunately, there are tools to help us.
Using BGB (for dynamic analysis)
The BGB emulator is a really nice GameBoy emulator, with a nice and complete debugger. It can set breakpoints on code and on memory access, and help you track the execution of the code.
BGB is originally written for Windows, but it works also well on macOS and Linux using Wine.
Here is how to use BGB for reverse-engineering the game:
-
Compile the game (
make all
).It produces
game.gbc
(a compiled rom identical to the original) and more importantlygame.map
, the debug symbols. -
Open
game.gbc
in the BGB emulator. -
Open the debugger, and jump to the
0000:0150
address. You'll see a function namedStart
. Notice how BGB knows the name of this function from the debug symbols. -
You can now trace the execution of the code, set breakpoints, watchers, edit the memory, etc.
From there the goal is to pick a function or a memory location, and understand what it does, so that we can label it in the disassembled code. For this the process usually goes like this:
- Pick a function instruction (for instance
call label_0A43
) - Understand what is does. For this you can either:
- read the assembly,
- set a breakpoint, to see when this function is called,
- see what memory location it reads or changes,
- observe the values changing in the memory viewer while the game runs,
- use the debugger to replace the function by a
nop
, and see what change occur in the game
- Open the assembly source (
src/code/bank*.asm
) or memory map (src/constants/*
), and label the code or memory you identified the purpose of. - Rince and repeat.
Using awake
(for static analysis)
Awake is a static GameBoy assembly explorer, specially tuned for exploring ZeldaGB and ZeldaDX. It allows to identify functions, loops, and to jump easily from functions to function. It makes much easier to follow the flow of the code and data during the game.
The tool was initially developed by @devdri. @kemenaran is currently writing some improvement to this tools, so that it can read debug symbols (otherwise no functions are labelled), and label functions from within the explorer.
Resources
- Artemis251's Link's Awakening Cache: ROM map, maps data format
- Xkeeper's Link's Awakening depot: maps tilesets and save format infos
- LALE: level editor, notes on maps data format
- The Legend of Zelda Link's Awakening /DX Speedrunning Wiki : infos on wrong warps and map data format
- Disassembling Link's Awakening: a serie of blog posts and progress reports
Contributors
Thanks to these people for contributing:
- kemenaran - https://github.com/kemenaran
- Drenn1 - https://github.com/Drenn1
- Sanqui - https://github.com/Sanqui