Skip to content

Instantly share code, notes, and snippets.

# ~/.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
@0x6a61
0x6a61 / learn-avr.sh
Last active April 12, 2020 20:03
Compile C-File to avr, emulate chip and finally debug with gdb-avr
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