volatile uint32 myVar;#define myMACRO() asm {\  TST.L myVar\  BEQ LABEL\  ADD.L %-1,myVar\LABEL:\   }I would like to know how to to genarate unique label each time the macro is used, I tried "\@" after label name but it doesn't work.已解决! 转到解答。
extern volatile uint32 myVar;inline asm void myFunction(void){  TST.L myVar  BEQ LABEL  ADD.L %-1,myVarLABEL:}#define myMACRO() myFunction()Emmanuel,
					
				
			
			
				
			
			
				
			
			
				
			
			
			
			
			
		extern volatile uint32 myVar;inline asm void myFunction(void){  TST.L myVar  BEQ LABEL  ADD.L %-1,myVarLABEL:}#define myMACRO() myFunction()Emmanuel,
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		