Move from asm to __asm by default

- GCC with -std=c99 warns about asm but likes __asm
_ armcc5 has __asm but not asm
diff --git a/library/padlock.c b/library/padlock.c
index 3e9f9a9..e980d24 100644
--- a/library/padlock.c
+++ b/library/padlock.c
@@ -38,6 +38,10 @@
 
 #include <string.h>
 
+#ifndef asm
+#define asm __asm
+#endif
+
 #if defined(MBEDTLS_HAVE_X86)
 
 /*