Multiline list literals no longer work
An assembler for the legendary 6502 processor and it's derivatives
Brought to you by:
soci
In previous versions of 64tass it was possible to do multi-line lists, like this:
table = [
[$01,$02,$03],
[$04,$05,$06]
]
However this has stopped working- attempting this in the most recent version just creates an error:
multilinelist.asm:1:10: error: an expression is expected
table = [
^
multilinelist.asm:2:2: error: general syntax
[$01,$02,$03],
^
multilinelist.asm:3:2: error: general syntax
[$04,$05,$06]
^
multilinelist.asm:4:2: error: general syntax
]
^
Would it be possible for this functionality to be restored?
Never mind this ticket, I see it is a duplicate of #60. Feel free to close.
Hello!
Sorry, I can't restore multiline expressions the same way as they were as it'd be still broken.