We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was getting this error from pucrunch step:
Only programs from 0x0258 to 0xffff can be compressed (the input file is from 0x785c to 0x1285b)
Problem was due to printf statement printing a literal string '\x00\x50' rather than the loadbytes 00 50 as expected.
To fix the build, I added
SHELL := /bin/bash
to the top of the Makefile.
Then the build worked.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was getting this error from pucrunch step:
Only programs from 0x0258 to 0xffff can be compressed
(the input file is from 0x785c to 0x1285b)
Problem was due to printf statement printing a literal string '\x00\x50' rather than the loadbytes 00 50 as expected.
To fix the build, I added
SHELL := /bin/bash
to the top of the Makefile.
Then the build worked.
The text was updated successfully, but these errors were encountered: