Main Content

Writing AVR assembler code with the Arduino IDE

Although I have written a lot of code in high-level languages like C++, I enjoy writing assember the most. For inserting assembler code into Arduino sketches, you can read a gcc inline assembly guide. If you have some assembly code and want to use it, there is an easier way than converting it to inline assembly; you can make it a library.”

Link to article