1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-13 23:26:59 +00:00

Merge pull request #132 from antonblanchard/bin2hex-move

Move bin2hex.py to scripts/
This commit is contained in:
Anton Blanchard 2020-01-11 22:07:42 +11:00 committed by GitHub
commit 729a35967a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ hello_world.bin: hello_world.elf
$(OBJCOPY) -O binary hello_world.elf hello_world.bin
hello_world.hex: hello_world.bin
./bin2hex.py hello_world.bin > hello_world.hex
../scripts/bin2hex.py hello_world.bin > hello_world.hex
clean:
@rm -f *.o hello_world.elf hello_world.bin hello_world.hex