This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
avr-gcc -g -O0 -mmcu=atmega16 main.c | |
simavr -m atmega16 -g -v a.out | |
# GDB | |
avr-gdb | |
target remote 127.0.0.1:1234 | |
file /tmp/a.out | |
# Radare 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.radare2rc | |
e asm.describe=true | |
e asm.pseudo=true | |
e asm.emu = true | |
e asm.trace=true | |
e asm.cmtright=true | |
e cmd.stack = true | |
eco solarized |