Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 291 Bytes

File metadata and controls

20 lines (13 loc) · 291 Bytes

gdb usage for assembly

Back{: .button}

gdb ./app

# Start the application
> start

# Get the disassemble source at which the debugger is present
> disassemble

# Print contents of r0 and r1
> info register r0 r1

# Step into next instruction
> stepi