> hello, > In the package "binutils" there are : > "as" and "ld". > I did man as, man ld, info as, info ld, but > I need a tutorial or a book which contain examples of programs... > (the programs write with tasm of borland don't works with as an ld) > > Can someone give me a link to find useful documentations.
Besides books, you may want to try writing small C programs and compiling them with gcc, using the -S option. "gcc -o -S input.c" should give you some nice assembly code in the file input.s. J. --