EEPROM READ AND WRITE
Discussion in "Project Doubts" started by gigyani Apr 18, 2019.
Thu Apr 18 2019, 07:31 am
STATREAD:
MOV A, #WTCMD ;LOAD WRITE COMMAND
CALL OUTS
MOV A, #00H
CALL OUT
CALL CREAD
MOV A, R1
MOV STATUS, A
RET
why MOV A , #WTCMD, give me the error A45 enerywhere in the code?
MOV A, #WTCMD ;LOAD WRITE COMMAND
CALL OUTS
MOV A, #00H
CALL OUT
CALL CREAD
MOV A, R1
MOV STATUS, A
RET
why MOV A , #WTCMD, give me the error A45 enerywhere in the code?
Fri Apr 19 2019, 11:05 pm
The full error is
control_unit.asm(1294): error A45: UNDEFINED SYMBOL (PASS-2)
UNDEFINED SYMBOL means the assembler does not know what WTCMD means.
Somewhere there should be a file containing definitions of things like WTCMD.
Where did you get this code ?
control_unit.asm(1294): error A45: UNDEFINED SYMBOL (PASS-2)
UNDEFINED SYMBOL means the assembler does not know what WTCMD means.
Somewhere there should be a file containing definitions of things like WTCMD.
Where did you get this code ?
Powered by e107 Forum System