Files
seer/tests/helloasm
Ernie Pasveer e4ae11abba Add readme.
2022-04-23 16:20:50 -05:00
..
2022-04-23 15:56:53 -05:00
2022-04-23 15:56:53 -05:00
2022-04-23 16:20:50 -05:00

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