Shop OBEX P1 Docs P2 Docs Learn Events
SX/B code highlighting (Variable types) — Parallax Forums

SX/B code highlighting (Variable types)

RobotWorkshopRobotWorkshop Posts: 2,307
edited 2007-06-08 21:11 in General Discussion
I hadn't really noticed before but when declaring variables the keyword VAR, BYTE, and WORD are normally in bold. However when definining a BYTE array like BYTE(3) the BYTE doesn't show up in bold. Seems to work ok but that is something that should probably be checked out for a future update to SX/B.

Robert

Comments

  • JonnyMacJonnyMac Posts: 9,214
    edited 2007-06-08 21:11
    If you separate the array size from "Byte" it will work, and the array is still declared properly.

    myArray   VAR     Byte (3)
    
Sign In or Register to comment.