Can i spread an instruction over multiple lines?
Janstr
Posts: 4
Is it possible in the Propeller tool to spread an (SPIN) instruction over multiple lines. Or similar, can i spread a DAT entry over multiple lines.
For example:
DAT
Mydata byte %10000000, %01000000, %00100000, %00010000,
················· %00001000, %00000100, %00000010, %00000001
Otherdata byte "This is a string"
·
For example:
DAT
Mydata byte %10000000, %01000000, %00100000, %00010000,
················· %00001000, %00000100, %00000010, %00000001
Otherdata byte "This is a string"
·
Comments
-Phil
and in the DAT section you can just continue adding data.
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
lonesock
Piranha are people too.
There is no need to have a label in the second line.
For real long lines of instructions you can split by putting a {{ at the end of line 1 and a }} at the beginning of the next line.