Artifact 7f6d7fc662c0439e3d5b2fe363c82928bd0333c8:
- File ffcall/avcall/asmm68k.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 563) [annotate] [blame] [check-ins using] [more...]
- File ffcall/callback/vacall_r/asmm68k.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 563) [annotate] [blame] [check-ins using]
- File ffcall/vacall/asmm68k.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 563) [annotate] [blame] [check-ins using]
// Assembly language support for m68k CPU. // Bruno Haible 29.5.1999 #ifdef ASM_UNDERSCORE // SunOS, NetBSD, OpenBSD, Linux/a.out #define C(entrypoint) _##entrypoint #else // SVR4, A/UX, AMIX, Atari, Linux/ELF #define C(entrypoint) entrypoint #endif // When assembly language code is compiled into a shared library, ELF linkers // need to know which symbols are functions. #if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__ELF__) || defined(__svr4__) #define DECLARE_FUNCTION(name) .type C(name),@function #else #define DECLARE_FUNCTION(name) #endif