Hi, I have a small problem...Programming one 24LC64 with a 16f84a is everything ok but two 24LC64 in series on the same bus it doesn't work me.
Following the 24LC64 datasheet indications, to make you to work needs to put to +5 a pin or various combinations up to form at the most a group from 8 eeproms, I have chosen the A0 and street software, if I have understood well, modified the second eeprom to 1 the 2° right bit, in practice:

"I skip the whole code before and later for simplicity"
-----------------------------------------------
WRITING:
FOR I = 0 TO 10
ADDR = THE: _WRITE = THE: ADDR2 = THE: _WRITE2 = THE
I2CWRITE SDA, SCL,% 10100000, ADDR, [_WRITE] 'First EEPROM
Breaks 10
I2CWRITE SDA, SCL,% 10100010, ADDR2, [_WRITE2] 'Second EEPROM
Breaks 10
_WRITE2 = _WRITE2 * 3
GOSUB LETTURA
NEXT I
-----------------------------------------------
Where is the error?
Thanks
chip_x