* device/include/asm/pic16/features.h,
[fw/sdcc] / device / lib / pic16 / libio / usart / ubusy.c
index 8533ca18d79c25ae98d58e0cc337eb057b1d0d35..5968e0d69bba52fba705c7287df09f6c0c88e078 100644 (file)
 
 #include <usart.h>
 
-unsigned char usart_busy(void) _naked
+unsigned char usart_busy(void) __naked
 {
 #if 0
   if(!TXSTAbits.TRMT)return 1;
   else return 0;
 #else
-  _asm
+  __asm
     movlw       0x00
     btfss       _TXSTAbits, 1
     addlw       0x01
     return
-  _endasm;
+  __endasm;
 #endif
 }