oakgun
oakgun

Reputation: 170

Need a good source for AT&T Assembly Syntax

I'm looking for sources to study assembly with AT&T syntax(NOT Intel), any help would be appreciated.

Thanks.

Upvotes: 3

Views: 588

Answers (2)

Niranjan M.R
Niranjan M.R

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

Gunther Piez
Gunther Piez

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

Related Questions