Shop OBEX P1 Docs P2 Docs Learn Events
Any facility for breaking up lines in DAT definitions, at least? — Parallax Forums

Any facility for breaking up lines in DAT definitions, at least?

Rich MRich M Posts: 33
edited 2006-08-24 21:02 in Propeller 1
I'm sure I already know the answer to this, but just in case I'm totally missing something in the manual...

Does Spin have any syntax that will allow me to break up a DAT definition into multiple lines? I have a somewhat large CRC lookup table defined, and I really, really don't want it to be on one line of 4K characters...

- Rich

Comments

  • Mike GreenMike Green Posts: 23,101
    edited 2006-08-24 21:02
    You can just start another line with BYTE, WORD or LONG followed by the list of data values like:
    table word 1, 2, 3, 4, 5
            word 6, 7, 8, 9, 10
    
    
Sign In or Register to comment.