Command: EQU: Pseudo: define constants for the preprocessor
Arguments: VALUE: immediate, to be written in dec (135) or hex (0x12345678)
Usage: constlabel: EQU VALUE
Effects: Creates an alias for imm with name "constlabel".
Flags to be set: none
Misc:Must be preceded by a label. Example:
myValue: EQU 3
MOV EAX, myValue