fixed wrong executable name in path

This commit is contained in:
tolik518 2024-05-14 19:47:50 +02:00
parent 74e1ca879a
commit e4b6c62445

View file

@ -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.