* device/include/asm/pic16/features.h,
[fw/sdcc] / device / lib / pic16 / libio / usart / udrdy.c
index a4c16f4adac3c03345d05df41a8cd9f3026d7a98..00a343c30df6adaf27e1d7a90d4ceaa79f2549ed 100644 (file)
 #include <usart.h>
 
 
-unsigned char usart_drdy(void) _naked
+unsigned char usart_drdy(void) __naked
 {
 #if 0
   if(PIR1bits.RCIF)return 1;
   else return 0;
 #else
-  _asm
+  __asm
     movlw       0x00
     btfsc       _PIR1bits, 5
     addlw       0x01
     return
-  _endasm;
+  __endasm;
 #endif
 }