Is the following instruction line correct from the PIC16F690 datasheet from example 10-1? (https://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en023112)
BCF EECON1, RD ;EE Read
According to Register 10-5, setting the read control bit (RD) initiates a memory read.
Should the line read as follows:
BSF EECON1, RD ;EE Read
BCF EECON1, RD ;EE Read
According to Register 10-5, setting the read control bit (RD) initiates a memory read.
Should the line read as follows:
BSF EECON1, RD ;EE Read