fp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: fp.h,v 1.1 1998/07/16 19:10:04 ralf Exp $
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1998 by Ralf Baechle
  8.  */
  9. /*
  10.  * Activate and deactive the floatingpoint accelerator.
  11.  */
  12. #define enable_cp1()
  13. __asm__ __volatile__(
  14. ".settpushnt"
  15. ".settnoatnt"
  16. ".settreordernt"
  17. "mfc0t$1,$12nt"
  18. "ort$1,%0nt"
  19. "mtc0t$1,$12nt"
  20. ".settpop"
  21. : : "r" (ST0_CU1));
  22. #define disable_cp1()
  23. __asm__ __volatile__(
  24. ".settpushnt"
  25. ".settnoatnt"
  26. ".settreordernt"
  27. "mfc0t$1,$12nt"
  28. "ort$1,%0nt"
  29. "xort$1,%0nt"
  30. "mtc0t$1,$12nt"
  31. ".settpop"
  32. : : "r" (ST0_CU1));