Start MOVLW 0xff ; 0xff=b'11111111
MOVWF PORTA ; on
MOVLW 0x00 ;
MOVWF PORTA ; off
GOTO Start
So I was following a video for how to make an LED blinging program with assembly for PIC16 F877A, but then i realized im using xc8 compiler and the compiler being used in the video is MPASM ( I think this is the problem from my understanding im pretty new to this stuff). Also could the problem be something else? I'd appreciate any help even if little bit.
Start: MOVLW 0xff.