i use the keil uvision3 which can be use for c source code and assembler.each time i write a code in A51 i keep getting error in trying to build it(target not created i.e the error message)whic i thought the error is that i dont know the type of header to use in a51 just like we use #include <> in c51.pls try to give me solution to this.
I be thinking I ansewrd it in the thread:
http://www.keil.com/forum/docs/thread15468.asp
You be looking at page:
http://www.keil.com/support/man/docs/a51/a51_include.htm
$include NOT #include
ANSI Assembly ?
(knowing too many assemblers can get in the way... not to mention that I've been up since 3:30AM too)
--Cpt. Vince Foster 2nd Cannon Place Fort Marcy Park, VA
Is this the cause of some still writing assembler in uppercase?
I used mixed case in assembly... upper-case instructions denotes a program counter change (other than n+1), while the rest of the instructions are in lower-case.
A pop of the ACC would be: pop ACC A pop of the PC would be: POP PC (non-8051)
That is just my preference/style.