I want to know how to do modulus in arm assembly language
I\'ve tried the code in this page MOD operator in arm website:
MOV R1,#12 MOD 7 ; R1
If you're using the GNU assembler (you don't say), then the mod (remainder) operator is %, same as C.
%
The fine manual is here.