You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As might be expected, mapping the following characters is also problematic: ' " , ;
Vaguely related, strings containing two forward slashes "//" error because bass sees this as a comment. Let me know if I should create a separate issue to track this. test.asm for this:
output "test.bin", create
db "no//comment"
bass gives this error:
error: malformed expression: "no
test.asm:2:1: db "no
bass: assembly failed
test.asm file for this is:
output "test.bin", create
map ',', $43
db "Hello, World"
bass gives this error atm:
error: malformed expression: '
test.asm:2:1: map ',', $43
bass: assembly failed
Would be useful to be able to map a comma character for font tables in bass.
The text was updated successfully, but these errors were encountered: