On Wed, 2006-11-22 at 16:08 -0500, A D wrote: > Again my thanks goes to Jean-Yves Lamoureux and all the forum members. That > is all i wanted to know. > > --STeve Also, if you use C libraries for your I/O, you can assemble your assembly language source files with as --gstabs -o foo.o foo.s where --gstabs gives you debugging symbols. Then use gcc to link your object file(s), even if you have only one file: gcc -o myProg foo.o gcc recognizes that the input file is already an object file, so it goes directly to the linking phase. The advantage of doing it this way instead of using ld is that gcc will automatically find the C libraries for you. If you use ld, you need to explicitly list the C libraries. - To unsubscribe from this list: send the line "unsubscribe linux-assembly" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
- References:
- Re: GAS colorr pixel problem
- From: A D
- Re: GAS colorr pixel problem
- Prev by Date: Re: GAS colorr pixel problem
- Next by Date: Re: GAS colorr pixel problem
- Previous by thread: Re: GAS colorr pixel problem
- Next by thread: Re: GAS colorr pixel problem
- Index(es):