asmmips.h
上传用户:shenzhenrh
上传日期:2013-05-12
资源大小:2904k
文件大小:0k
源码类别:

信息检索与抽取

开发平台:

Unix_Linux

  1. // Assembly language support for mips CPU.
  2. // Bruno Haible 29.5.1999
  3. // When assembly language code is compiled into a shared library, ELF linkers
  4. // need to know which symbols are functions.
  5. #if defined(__GNU__) || defined(__NetBSD__)
  6. #define DECLARE_FUNCTION(name) .type name,@function
  7. #else
  8. #define DECLARE_FUNCTION(name)
  9. #endif