Hi,
In case of PPC460 Assembly, i write a macro as :
.macro PRINTMSG cpu_num, msg, len
li 7, 0
lai 2, msg
next_word: PRINTWORD \cpu_num, 2
addi 2, 4
addi 7, 4
cmpi 7, \len
ble next_word
.endm
But the label
next_word: does not work inside a macro.
So how do i branch to a particular label inside a macro ?
Regards,
Pushkar