Posted: Sun Feb 02, 2003 1:56 am
Restored from previous forum. Originally posted by vanleth.
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.
Best regards
Van
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