101
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
XOR Operator
(1) Logical XOR. (2) Bitwise XOR.
if i = 5 XOR j = 10 then.... ' as a logical XOR
&b10110101 XOR
&b01011001 ' this would be
&b11101100
Error Messages
Below is a listing of all error messages which may appear when trying to build and
upload your Tibbo BASIC program onto a target.
C1001
Description:
This error occurs when a source file contains an “illegal” character (like a special
character, a non-English letter, etc) outside of a string literal or a comment.
Example:
%
dim
x
as
byte
' error C1001: invalid char '%' (25)
See Also
C1002
Description:
This error occurs when source code contains a line break inside a string literal or a
character constant.
Example:
S = “I am a
string
literal
"
' error C1002: newline in constant
See Also
42
43