In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "User:Georgp24/testpage0"

From WiiBrew
Jump to navigation Jump to search
m
(←Blanked the page)
Line 1: Line 1:
==Assembler programming for the WII==
 
  
It is possible to write assembler programs for the Wii and this describes how to do it.
 
 
Writing games and applications in C or C++ is of cause more efficient. However, it is not forbidden to use Assembler for the WII. If you are interested in assembler programming then give it a try and do it!
 
 
<br>
 
 
</br>
 
 
The devkitpro toolchain uses the GCC C/C++ compiler. This compiler uses the AS (or GAS) assembler to assemble the code. The AS assembler has a different syntax to most other assemblers since it does not use the Intel syntax but the AT&T syntax which is very different from the Intel syntax. The advantage of the AS assembler among other features is that it can generate code not only for Intel processors but for a lot of different processors as well such as the PowerPC processor. So it supports instructions like stmw, stwu, mflr, mtlr, blr etc.
 
 
The assembler code usually has to call the C functions of the devkitpro package which provide support for the WII such as querying the Wiimote. So you have to link these with your assembler code.
 
 
==Resources==
 
 
[[Application Note to compile and run assembler programs on the WII]]
 
 
[[Tutorial for the PowerPC processor instructions and the AS assembler]]
 
 
 
==Links==
 
 
[http://publib.boulder.ibm.com/infocenter/systems/topic/com.ibm.aix.aixassem/doc/alangref/alangref.pdf AIX assembler] AIX assembler manual (not AS!) with detail descriptions of the PowerPC instructions
 
 
[http://www.freescale.com/files/product/doc/MPCFPE32B.pdf MPCFPE32B.pdf] The special PowerPC instructions are documented in chapter 8 of this manual
 
 
[http://public.elsaco.cz/katalogy/PowerPC/svr4abippc.pdf SVR4ABI.pdf] or [http://opensolaris.org/os/community/power_pc/powerpc_doc_library/an2540.pdf] The PowerPC Processor ABI Supplement
 
 
[http://sourceware.org/binutils/docs/as/index.html AS assembler manual]
 
 
[https://www-01.ibm.com/chips/techlib/techlib.nsf/techdocs/2F33B5691BBB8769872571D10065F7D5/$file/750cldd2x_ds_v2.5_2December2008.pdf PPC CL datasheet]
 
 
[https://www-01.ibm.com/chips/techlib/techlib.nsf/techdocs/A88091CAFE0F19CE852575EE0073078A/$file/To%20CL%20-%20CL%20Special%20Features%206-22-09.pdf PPC CL special features]
 
 
[http://www.ibm.com/developerworks/library/l-ppc/ Introduction to assembly on the PowerPC]
 
 
<!--[[Category:Development]]-->
 

Revision as of 18:09, 10 August 2009