2004-03-10 01:39 AM
2004-03-09 11:17 PM
Hello
I current use an ST72334 uC. I have a problem in my code as follow ... lab_A equ 3 lab_B equ 2*lab_A+1 ..... during the compilation it stated out the following error message: Error 67: Improper Character(s) '+1' Can I use this expression for equate? I should like to update some parameters depending to another one. Bye2004-03-10 12:43 AM
Try it using like:
.lab_A equ 3 .lab_B equ 2*lab_A .lab_C equ {lab_B+1}2004-03-10 01:00 AM
thank you, now it run!
Do you know a manual ( or an Application Note) where I can found some trick and/or use about this assembler directive? Bye2004-03-10 01:39 AM
Yes, you can download ''ST7 Assembler-Linker User Manual'' .