book to learn ppc assembly and architecture
From: s shaiju <hidden>
Date: 2011-05-15 16:57:26
Hi, what is the best book to learn assembly and architecture . regards, sha
7 messages, 5 authors, 2011-05-18 · open the first message on its own page
From: s shaiju <hidden>
Date: 2011-05-15 16:57:26
Hi, what is the best book to learn assembly and architecture . regards, sha
From: Michael Neuling <hidden>
Date: 2011-05-16 06:37:32
what is the best book to learn assembly and architecture .
Reading the architecture books with a nice cup of tea. http://www.power.org/resources/downloads/PowerISA_V2.06B_V2_PUBLIC.pdf Good luck! Mikey
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Date: 2011-05-16 23:38:52
On Mon, 2011-05-16 at 16:37 +1000, Michael Neuling wrote:
quoted
what is the best book to learn assembly and architecture .Reading the architecture books with a nice cup of tea. http://www.power.org/resources/downloads/PowerISA_V2.06B_V2_PUBLIC.pdf
A slightly less steep approach might be to get yourself the programmer manuals of some older powerpc chips, like the freescale PEMs, and then move on to the full ISA Cheers, Ben.
From: Michael Neuling <hidden>
Date: 2011-05-16 23:43:35
In message <1305589123.2781.15.camel@pasglop> you wrote:
On Mon, 2011-05-16 at 16:37 +1000, Michael Neuling wrote:quoted
quoted
what is the best book to learn assembly and architecture .Reading the architecture books with a nice cup of tea. http://www.power.org/resources/downloads/PowerISA_V2.06B_V2_PUBLIC.pdfA slightly less steep approach might be to get yourself the programmer manuals of some older powerpc chips, like the freescale PEMs, and then move on to the full ISA
True but a well aged Shiraz goes better with them than the cup of tea. Mikey
From: s shaiju <hidden>
Date: 2011-05-17 16:46:20
thanks. regards, sha
From: mikey@neuling.org To: benh@kernel.crashing.org CC: sha_neb@hotmail.com; linuxppc-dev@lists.ozlabs.org Subject: Re: book to learn ppc assembly and architecture Date: Tue, 17 May 2011 09:43:35 +1000 In message <1305589123.2781.15.camel@pasglop> you wrote:quoted
On Mon, 2011-05-16 at 16:37 +1000, Michael Neuling wrote:quoted
quoted
what is the best book to learn assembly and architecture .Reading the architecture books with a nice cup of tea. http://www.power.org/resources/downloads/PowerISA_V2.06B_V2_PUBLIC.pdfA slightly less steep approach might be to get yourself the programmer manuals of some older powerpc chips, like the freescale PEMs, and then move on to the full ISATrue but a well aged Shiraz goes better with them than the cup of tea. Mikey
From: kevin diggs <hidden>
Date: 2011-05-17 19:24:17
Hi, On Mon, May 16, 2011 at 6:38 PM, Benjamin Herrenschmidt [off-list ref] wrote:
On Mon, 2011-05-16 at 16:37 +1000, Michael Neuling wrote:quoted
quoted
what =A0is =A0the =A0best =A0book =A0to =A0learn =A0assembly =A0and =
=A0architecture .
quoted
Assuming you have a powerpc compiler available you can use the -S option to produce assembly listings.
From: David Laight <hidden>
Date: 2011-05-18 07:57:31
=20
quoted
On Mon, 2011-05-16 at 16:37 +1000, Michael Neuling wrote:quoted
quoted
what =A0is =A0the =A0best =A0book =A0to =A0learn =A0assembly =
=A0and architecture .
=20 Assuming you have a powerpc compiler available you can use the -S option to produce assembly listings.
With gcc add -fverbose-asm for more info. For a general background, look at something much simpler than ppc, even if you don't write/run any code. David