Jump to content

Category:ARM Assembly Implementations: Difference between revisions

no edit summary
m (Created page with "{{implementation cat|ARM Assembly}}")
 
No edit summary
Line 1:
{{implementation cat|ARM Assembly}}
Arm Assembly 32 bits is running on raspberry pi 1,2 and 3.
For compiling, use as and link to ld.
 
Arm Assembly 32 bits is running on android os with application Termux (download to playstore).
Read the documentation to Termux site.
Install and config ssh to connect a pc
Install package binutils.
 
For compiling and link use as and ld strictly equal to raspberry pi.
 
Script example :
#compilation assembleur ARM raspberry or android
echo "Compilation 32 bits de "$1".s"
as -o $1".o" $1".s" -a >listing.txt
#gcc -o $1 $1".o" -e main
ld -o $1 $1".o" -e main
ls -l $1*
echo "Fin de compilation."
Cookies help us deliver our services. By using our services, you agree to our use of cookies.