I am a beginner! I have the latest Arduino IDE (1.8.3 I believe ) installed on my other computer. I am learning to do AVR assembler out of a bunch of books.
All is well and I am writing functions, geting values, twiddling ports and pins to my heart's delight... Except some things just won't compile.
MyArray: .DB 1,2,3,4,5,6
will not compile.
.DEF statements will not either
LPM will not put the value found at the address (specified in the Z register) into R0
I can work around all these but I still would like it all to work "right" and as it should. I will not be supprised if I come across more things that should work but don't.
Aside from these and a few other glitches I seem to be able to write small, elementary code and verify the returned values are correct.
My question is there a list of know issues trying to do AVR assembler in the Arduino IDE and any workarounds?
Thanks in advance.