Which of the following statement is used to end a macro in assembly language?
ENDM statement is used to end a macro in assembly language.
A macro is a sequence of instructions, assigned by a name and could be used anywhere in the program.
Writing a macro is another way of ensuring modular programming in assembly language. A macro is a sequence of instructions, assigned by a name and could be used anywhere in the program.
A macro is an extension to the basic assembler language. They provide a means for generating a commonly used sequence of assembler instructions/statements. Whenever the sequence is needed within a program, the macro will be "called".