What are Macros?
Macro is a group of instruction. The macro assembler makes the code in the program each time where the macro is called. Macros are described by MACRO & ENDM directives. Creating macro is similar to creating new opcodes that can be used in the program
INIT MACRO
MOV AX, data
MOV DS
MOV ES, AX
ENDM