Is it possible to have unsigned Byte variables? So you can store numbers for a palette. This would also be handy when parsing encoded data ect. Or should I just use a word varible for bigger numbers.
The below example is just a byte varible test.
Code: Select all
Restore bytetest
For a = 0 To 2
Read test.b
Debug test
Next
DataSection
bytetest:
Data.b 255,0,128
EndDataSection
Van
