LABELS

A label returns the offset where it's created.
Create a label like this:
name:			; Creating a label named "name"

Example:
DB 'Hello!'		; Write 'Hello!' into the current segment

myLabel:		; Creating a label
ofs = OFFSET myLabel	; ofs = offset of label
ECHO ofs		; Display the offset