What's the best method? At the moment I am using markers to signify the end of some data, like this:
Code: Select all
Restore RainbowColours
Repeat
Read Colour.s
Debug Colour
Until Colour = ""
DataSection
RainbowColours:
Data.s "Red", "Orange", "Yellow", "Green"
Data.s "Blue", "Indigo", "Violet", ""
EndDataSection
