; -*- mpasm -*- ;****************************** Move C to A ****************************** ; A/24 = C/24 ; ; This routine moves the contents of mC0,mC1,mC2 registers to the mA0, ; mA1,mA2 registers. ; ; Memoria usada: ; Programa: 7 words ; ; Autor: Salvador Eduardo Tropea (SET) ; ; 7 moveCtoA: movf mC0,w movwf mA0 movf mC1,w movwf mA1 movf mC2,w movwf mA2 return