From e4b6c6244565eea01ef8d7da696d0c5572289741 Mon Sep 17 00:00:00 2001 From: tolik518 Date: Tue, 14 May 2024 19:47:50 +0200 Subject: [PATCH] fixed wrong executable name in path --- book/src/setup/building.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/setup/building.md b/book/src/setup/building.md index d88b9e53..bec082a7 100644 --- a/book/src/setup/building.md +++ b/book/src/setup/building.md @@ -35,13 +35,13 @@ To do this, we'll use the tool `agb-gbafix`. Run the following command to convert the binary file to a GBA ROM: ```sh -agb-gbafix target/thumbv4t-none-eabi/release/template -o template.gba +agb-gbafix target/thumbv4t-none-eabi/release/agb_template -o agb_template.gba ``` or ```sh -agb-gbafix target/thumbv4t-none-eabi/release/template.elf -o template.gba +agb-gbafix target/thumbv4t-none-eabi/release/agb_template.elf -o agb_template.gba ``` This command will add the correct GBA header to the template.gba file and it will be playable on real hardware or an emulator.