Write short answers to the following:
(i). Which of the following macros can put a macro assembler into an infinite loop?
.MACRO MI,X
.IF EQ,X
M1 X+1
.ENDC
.IF NE,X
.WORD X
.ENDC
.ENDM
|
.MACRO M2,X
.IF EQ,X
M2 X
.ENDC
.IF NE,X
.WORD X+1
.ENDC
.ENDM
|
Give an example call that does so.