Any tips to programming would be appreciated.

link|improve this question

3  
What's the question? – KennyTM Apr 4 '10 at 20:08
feedback

2 Answers

up vote 1 down vote accepted

With x86-64 the general purpose registers are 64 bit rather than 32 bit (and there are 16 of them rather than 8). (You also get 16 (128 bit) SSE registers instead of the usual 8.) A decent compiler will therefore often be able to generate more efficient code (less register spill) in x86-64 code compared to old skool 32 bit code.

link|improve this answer
feedback

MMX, SSE and 3DNow use 64 or 128 bits registers

However, you won't "program" them yourself unless you're really low level in assembler or writing a compiler. It's transparent to pretty much everyone one

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.