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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.     NetWinder Floating Point Emulator
  3.     (c) Rebel.com, 1998-1999
  4.     Direct questions, comments to Scott Bambrough <scottb@netwinder.org>
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.     You should have received a copy of the GNU General Public License
  14.     along with this program; if not, write to the Free Software
  15.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. #ifndef __FPMODULE_H__
  18. #define __FPMODULE_H__
  19. #include <linux/config.h>
  20. #ifdef CONFIG_CPU_32
  21. #define REG_ORIG_R0 17
  22. #define REG_CPSR 16
  23. #else
  24. #define REG_ORIG_R0 16
  25. #define REG_CPSR 15
  26. #endif
  27. #define REG_PC 15
  28. #define REG_LR 14
  29. #define REG_SP 13
  30. #define REG_IP 12
  31. #define REG_FP 11
  32. #define REG_R10 10
  33. #define REG_R9 9
  34. #define REG_R9 9
  35. #define REG_R8 8
  36. #define REG_R7 7
  37. #define REG_R6 6
  38. #define REG_R5 5
  39. #define REG_R4 4
  40. #define REG_R3 3
  41. #define REG_R2 2
  42. #define REG_R1 1
  43. #define REG_R0 0
  44. #endif