Hi
I am using below code to EEPROM read
EEPROM_read:
; Wait for completion of previous write
sbic EECR,EEWE
rjmp EEPROM_read
; Set up address (r18:r17) in address register
out EEARH, r18
out EEARL, r17
; Start eeprom read by writing EERE
sbi EECR,EERE
; Read data from data register
in r16,EEDR
ret
But after compiling I am getting error for this line of code -sbic EECR,EEWE as operand out of range
I am using Atmel studio 7.0 with GCC compiler for
please help