How do i program an ESP32 or an ESP8266 module using assembly? I don't want to use arduino ide. I figured a way to program atmel chips with assembly. I wanted to learn how to program esp32 and esp8266 in assembly.
Programming esp32 and esp8266
10.5k Views Asked by vishnu joshi At
2
There are 2 best solutions below
1

I discover that if xtensa-lx106-elf-gcc.exe if is not call from inside from package ... not working. So i download from here https://docs.espressif.com/projects/esp8266-rtos-sdk/en/latest/get-started/windows-setup.html the toolchain https://dl.espressif.com/dl/xtensa-lx106-elf-gcc8_4_0-esp-2020r3-win32.zip i put folder xtensa-lx106-elf in C:
i have main.cpp
void setup(); void loop(); void setup() { asm(" movi.n a5, 100"); } void loop() { asm(" movi.n a4, 120"); }
and when call
C:\xtensa-lx106-elf\bin\xtensa-lx106-elf-g++.exe -Wall -O2 -ffreestanding -c main.cpp -o main.o
the file main.o is created
if not call executables from inside of toolchain ... not working!!!!
The tools can be easily found. I installed a pre-built tarball.
This is a mix of C and asm but you can do this all asm.
This is for an esp8266.
vectors.s
so.c
so.ld
build
disassembly
And then due to how this was done, you can't use esptool.py to prep the file, so I made my own, taking the output here:
turning it into this
I will let you figure that out, tool sources are available.
https://github.com/espressif/esptool
If this link stops working then search for "esptool.py" to hopefully find one.
Then flash it:
I am using a cheap nodemcu clone. I bought 5 of them for $15 on Amazon. Don't need extra wires/usb-uart, etc.
Changing these
to/from
and see the led blink rate change.
You can easily write this in only assembly by poking the few registers yourself.