(This software works with AVR and ESP8266 architecture)
This is a tool help to convert Arduino C/C++ code to Assembly code.
Step 1: Choose the Arduino *.elf file (generated when you compile C/C++ code in the IDE, usually located in Temp folder).
Step 2: Choose the output txt file, the assembly code will be written to this file.
Step 3: Click Convert.
The software requires .NET 4.0
Notepad++ recommended (to view Assembly code with colorful text): https://notepad-plus-plus.org/
The idea comes from:
http://forum.arduino.cc/index.php?topic=37711.0
https://forum.arduino.cc/index.php?topic=50169.0
Contact me: maisonsmd@gmail.com
Features
- Convert C/C++ code to Assembly code
- Automatically open output file when done converting
- Use generated assembly to optimize your code (speed, memories)
Categories
CompilersLicense
MIT LicenseFollow Arduino to Assembly Converter
Other Useful Business Software
Gen AI apps are built with MongoDB Atlas
MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
Rate This Project
Login To Rate This Project
User Reviews
-
W10 gives at first warnings not to write in the Documents directory by de assembly convertor. .NET is allready installed. After that having solved: Does only produce an empty .txt file when you copy the .elf file to anonther directory. The path must really point to de the Arduino subdirectory. Then it produces a clear ASM listing with embedded C language and numbered labels. Due to the optimizing compiler, the sequence is a mess, but you can find how the program executes. Great!Reply from Arduino to Assembly Converter