SDK's GCC compiler can compile assembler in inlines.
Example:
asm(" MOV r1,r0");
This will work only when compiling for the target.
You can change the assembler code according to what you compile for:
#ifdef __ARM__
or
#ifdef __WINS__
Assembly for WINS is completely different.
ARM Assembly language follows the specifications. See www.arm.com search for user guides.