in using pic16f88 gpr dm with indexing addressing mode what
in using pic16f88 gpr dm with indexing addressing mode, what should you do in (asm codes and comments) to move a byte of data at address 0x40 to address 0x178 in gpr/dm
Solution
ORG 00H
MOVF 40H,0 ;MOVING DATA FROM 40H TO W REGISTER
MOVWF 178H ;MOVING THAT DATA TO 178H.
END
