* device/include/asm/pic16/features.h,
[fw/sdcc] / device / lib / pic16 / libio / adc / adcbusy.c
index ae8dd58aeea7cb45353347e44a116b63008394ec..0ef40c5560ee77d0754be7b4339267cd1fbdb3b9 100644 (file)
@@ -4,16 +4,16 @@
 #include <adc.h>
 
 
-char adc_busy(void) _naked
+char adc_busy(void) __naked
 {
-#if 1
+#if 0
   return (ADCON0bits.GO);
 #else
-  _asm
+  __asm
     movlw       0x00
     btfsc       _ADCON0bits, 2
     addlw       0x01
     return
-  _endasm;
+  __endasm;
 #endif
 }