Files
seer/tests/helloasm/README.asm
T
Ernie Pasveer e4ae11abba Add readme.
2022-04-23 16:20:50 -05:00

8 lines
169 B
NASM

Steps to compile an asm program.
% nasm -f elf -F stabs helloasm.asm -o helloasm_stabs.o
% ld -m elf_i386 helloasm_stabs.o -o helloasm_stabs
% seer -s helloasm_stabs