Entry Annotation

The entry annotation .entry notifies the assembler that a label can be entered from another function. By default, only global labels, designated by <label>::, are considered entry points. The annotation and the label need not be consecutive.

The .entry annotation has the following syntax:

.entry   label [, labels...]

Where:

label

Represents the associated label.

 

Example: Using the Entry Annotation

.entry A              //entry annotation
 A: mov r1=r2