Multi-line code/declarations
ramman345
Posts: 24
I know spin is pretty particular about indentation and lines but I wonder if there's anyway to do multi-line coding
ex 1: function
ex 2: DAT block table
I'm really interested in the DAT idea because I have some static data I need to load onto a device at startup.
J
ex 1: function
PUB Foo(var_1, var_2, var_3)
ex 2: DAT block table
DAT BigData BYTE 1,1,1,1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2,2 3,3,3,3,3,3,3,3,3,3
I'm really interested in the DAT idea because I have some static data I need to load onto a device at startup.
J
Comments
A DAT table would work like
You can also just continue the table by adding another BYTE directive like