Returns the address of a variable variable, or the location of data stored in arrays and strings.
Syntax: variable = Addr(variable)
Example:
Dim a As uByte Dim s(10) As String FSR0 = Addr(a) ' FSR0 now points to variable a FSR1 = Addr(s) ' FSR1 now points to the string data for variable s