Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

ASSEMBLY COMMANDS:

Assembler:
nasm -felf64 <asmFilename>.asm

Linker:
ld [-o <execFilename>] <ObjectFilename>.o

Loader:
./<execFilename>

Starting GDB:
gdb <execFileName>
disas _start

Breakpoint:
b*<functionName>[+<offset>]
info breakpoints / i b

info registers / i r

Continue until next Breakpoint:


cont / c

Examin Memory Location:


x/<n><f><u>&variable

You might also like