Constants
Constants are just like variables, but they exist only until your
program is compiled (assembled). After definition of a constant its value
cannot be changed. To define constants EQU directive is used:
name EQU < any expression >
For example:
k EQU 5
MOV AX, k
The above example is functionally identical to code:
MOV AX, 5