NUMBER FUNCTIONS

Functions:
$		; Returns the current segment/section location
$$		; Returns the offset of the current section
OFFSET		; Returns the offset of an identifier
SIZE		; Returns the size of an identifier

Examples:
a = $			; Get segment location
b = SIZE myString	; Get size of a string equate
c = OFFSET myLabel	; Get offset of "myLabel"