summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--posts/writing-an-nes-game-part-1.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/posts/writing-an-nes-game-part-1.md b/posts/writing-an-nes-game-part-1.md
index 57ab227..328a6e2 100644
--- a/posts/writing-an-nes-game-part-1.md
+++ b/posts/writing-an-nes-game-part-1.md
@@ -149,10 +149,12 @@ this code, follow these steps:
data file (which will be included in the output)
* Run `wla-6502 -o test.s` to generate an object file called `test.o`
* Create a file named `linkfile` which is used by the linker, with the contents
+
```
[objects]
test.o
```
+
* Run `wlalink linkfile test.rom` to create the actual ROM
This ROM is not yet in the format required to be run by most NES emulators. To