In ARM assembly codes I can see something like these... (especially in shellcodes)
svc 0x0090003f
svc 0x001ff3bf
swi 0x0900ff0b
I know that 'svc(or swi)' is the 'supervisor call' like 'int 0x80' or 'SYSENTER' from Intel. but, how can I interpret the 'svc' numbers?? where can I get the listing of it's information?? What about thumb 'svc' instruction??
The arm instruction manual doesn't seem to be explaining these...
Can someone help me? Thank you in advance.