??? 02/10/07 20:10 Read: times |
#132474 - I read the assembler manual; Responding to: ???'s previous message |
The code goes like:
.equ KB_OK, 0x45 I changed it to KB_OK EQU 0x45 And it still gives me: ****ERROR #8: Illegal assembly line referring this line. The manual says it clear: Below are examples of using the EQU Directive: TEN EQU 10 ;Symbol equated to a number COUNTER EQU R7 ;User defined symbol for the[...] What am I doing wrong now? |