hello

In this procedure from Bert JalPack:

procedure Data_EEprom_Read( byte in Address, byte out Data ) is
  assembler
        bank MOVfW Address     ;
        MOVWF EEADR            ; Data Memory Address to read
        BCF EEPGD              ; Point to DATA memory
        BCF CFGS               ; Access program FLASH or Data EEPROM memory
        BSF RD                 ; EEPROM Read
        MOVF EEDATA, W         ; W = EEDATA
        bank MOVWF Data
  end assembler
end procedure

What is the meaning of  "bank" ???

is MOVfW Address    is the same as:  movf Address,W ???

many thanks
Phil

-- 
You received this message because you are subscribed to the Google Groups 
"jallib" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/jallib.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to