* device/include/asm/pic16/features.h,
[fw/sdcc] / device / lib / pic16 / libio / adc / adcread.c
index b3072bb7db2d8f0ae5c1c6d81d8424359a37d05b..bb556ea3a8a105e9a80f185f1dae2dd13a6f92d6 100644 (file)
 #include <adc.h>
 
 
-int adc_read(void) _naked
+int adc_read(void) __naked
 {
-  _asm
+  __asm
     movff       _ADRESH, _PRODL
     movf        _ADRESL, w
     return
-  _endasm;
+  __endasm;
 }