Olin Lathrop writes: >This all being said, I will most likely stick to assembler on small resource >limited systems like PICs. I MIGHT use a compiler if higher level language >and assembly source can be seamlessly integrated in the same source module. >For example, declare complex data structures in the high level language, >access in assembler, etc. That is one of the things I set out to do when I started writing my compiler Basic18. Assembly and Basic code can be intermixed seamlessly. For example, here is a small Basic program mixing basic and assembly --------------------------------------------------------------------- Include Sub main() Dim a As uByte a=10 movlw 5 addwf a,F End Sub --------------------------------------------------------------------- Compiling this program results in the following assembly file ;Sub MAIN() MAIN ;Dim A As uByte ;A=10 movlw 10 movwf MAIN@A+0,0 ;movlw 5 movlw 5 ;addwf A,F addwf MAIN@A,F,0 ;End Sub sleep Goto MAIN End Eric, ejames2@yahoo.com __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/ -- http://www.piclist.com hint: The list server can filter out subtopics (like ads or off topics) for you. See http://www.piclist.com/#topics