I've toyed with the idea of learning an assembly language, and have decided to give ARM a try. I've decided to go with the GNU assembler, mostly because it's available in my cellphone's repository, so that I could play around with assembly anywhere, if I'm bored.

Anyway, I've searched the web, but I can't find any kind of reference for how to properly exit an ARM Linux binary. I've understood that the x86 equivalent basically sets the eax register to a number specifying the system call, and then calls system interrupt 0x80 to actually perform the system call, properly exiting the program; now I want to do something similar for ARM (and obviously the same code doesn't work, since it uses x86 specific registers and whatnot).

So yeah, basically, how would I write a minimal GAS ARM executable, simply exiting normally with exit value 0?

link|improve this question
In most cases you can just return from the entry point (i.e. BX LR on ARM), the OS/loader should take care of shutting down the process. – Igor Skochinsky Feb 9 at 12:23
feedback

1 Answer

up vote 1 down vote accepted

There is some information on system calls at http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=3105/4. You can also look at page 5 of http://isec.pl/papers/into_my_arms_dsls.pdf.

link|improve this answer
Awesome! That SWI call works like a charm, thank you. – Jonas Feb 25 '11 at 1:00
Second link is now dead... – Tom Hawtin - tackline Feb 4 at 17:03
OK, I've added a new link instead of the broken one. – Jeremiah Willcock Feb 9 at 6:39
feedback

Your Answer

 
or
required, but never shown

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