* device/include/pic16/pic18fregs.h,
[fw/sdcc] / device / lib / _fsget2args.c
index d386be05d23ea0873cce602993f082d92c0a36f5..e46738f72383b56ad3397ccb3803448a2e87d1cb 100644 (file)
 
 #ifdef FLOAT_ASM_MCS51
 
-static void dummy(void) _naked
+static void dummy(void) __naked
 {
        // arg1: passed in a,b,dph,dpl
        // arg2: passed on stack
-       _asm
+       __asm
        .globl  fsgetargs
 fsgetargs:
        // extract the two inputs, placing them into:
@@ -69,11 +69,7 @@ fsgetargs:
        mov     exp_b, a
        mov     r7, b
        ret
-       _endasm;
+       __endasm;
 }
 
 #endif
-
-
-
-