Files
seer/tests/helloasm
2022-05-07 14:21:45 -05:00
..
2022-05-07 14:21:45 -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