ak46 0 Newbie Poster

My code is mistake asm->hex please help me. Thanks

hold macro	
       NOP
	NOP
	NOP
	endm

disp_str  macro string				
	irpc char, < string > 
		IF nul 'char'
			exitm
		endif
		MOV A,#'char'
		LCALL data_in
		
		
	endm
	endm

build_char macro P1,P2,P3,P4,P5,P6,P7,P8	
	irp arg, < P1,P2,P3,P4,P5,P6,P7,P8>
		MOV A,#arg
		ACALL data_in
	endm
	endm