Reputation: 170
I'm looking for sources to study assembly with AT&T syntax(NOT Intel), any help would be appreciated.
Thanks.
Upvotes: 3
Views: 588
Reputation: 351
I would also recommend "Programming from Ground Up" which can be found at: http://savannah.spinellicreations.com//pgubook/ProgrammingGroundUp-1-0-booksize.pdf
It was great help.
Upvotes: 0
Reputation: 30449
You an find a lot of assembler sources in the linux kernel in the arch subdirectory. For the common x86 processors, every file ending with .S
in /usr/src/linux/arch/x86 is a usually well documented assembler source.
If you don't have the source on your box, you can download them at http://kernel.org.
Upvotes: 2