msp430 error macro
Hy,
I need help, when i compile this routine below, appear the msg error the follow.
what is wrong?
a430.exe -OC:\Ronaldo\NOVOS_PROJETOS\MPS1232\Debug\Obj\ -s+ -M<> -w+ -IC:\Arquivos de
programas\IAR Systems\Embedded Workbench 3.2\430\inc\ -r C:\Ronaldo\chips\microcontrolador\
texas\vinicius\macro_lcd.s43
Error[4]: Unexpected end of file encountered
;arquivo Macro para LCD_NOKIA
;simbolo necessário para definir de macro
;dce bitx
;sda bitx
;sclk bitx
;sce bitx
;portlcd &PxOUT
;portlcddir &Pxdir
;arquivo Macro print a,b
;ASC inicio de endereço Tabela ASCll
;-------------------------------------------
sceon MACRO
bis.b #sce,&portlcd
endm
sceoff MACRO
bic.b #sce,&portlcd
endm
sclkon MACRO
bis.b #sclk,&portlcd
endm
sclkoff MACRO
bic.b #sclk,&portlcd
endm
dceon MACRO
bis.b #dce,&portlcd
endm
dceoff MACRO
bic.b #dce,&portlcd
endm
sdaon MACRO
bis.b #sda,&portlcd
endm
sdaoff MACRO
bic.b #sda,&portlcd
endm
sdain MACRO
bic.b #sda,&portllcddir
endm
sdaout MACRO
bis.b #sda,&portlcddir
endm
print MACRO a,b,c
mov #(a-32)*6+ASC,b
call c
endm
****here show red mark