-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
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
Apply workaround for ASxxxx macro problem #259
Comments
I have sent a link to this page to Alan Baldwin. |
Reply from Alan: Ken, I see how the argument being passed is causing the problem. HEADER "C" which has no delimiters in the argument "C" If the macro is passed an argument as - HEADER "," which has a delimiter, then the macro believes If the argument contains a ";" then the ; signifies and end of code The macro documentation specifies how to pass arguments containing HEADER ^/","/ or with any argument containing white space. I hope this clarifies the problem. Alan p.s.: |
Great info, thanks Ken! Using the notation
Encoding EDIT: encoding as |
@kenyapcomau found a workaround for the bug in ASxxxx (
sdasstm8
) macro processing described in the SDCC tracker issue 2626:using octal escapes for characters like
,
and;
prevents the assembler crash.Now all headers in
forth.asm
can use theHEADER
macro!The text was updated successfully, but these errors were encountered: