stack.ldp
上传用户:caisangzi8
上传日期:2013-10-25
资源大小:15756k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. /*
  2. *   Terry,2004/7/26 01:50PM
  3. *  
  4. */
  5. #ifdef SPHE8202 //terry,2004/7/27 09:39PM
  6. //#define STK_USE_DR
  7. #endif
  8. //------------------------------ stack pointer begin ------------------------------------
  9. #define STK_SIZE    (MAIN_TASK_SIZE+1)
  10. #ifdef STK_USE_DR
  11. #define STK_PTR     TO_DR(0,2)
  12. #define STK_BTM_PTR TO_DR(0,2-STK_SIZE)
  13. #else
  14. #define STK_PTR     TO080(A_MAIN_TASK_BOM)
  15. #define STK_BTM_PTR TO080(A_MAIN_TASK_BOM-STK_SIZE)
  16. #endif
  17. #define STK_DBG_PTR     TO080(A_DBG_TASK_BOM)
  18. #define STK_DBG_BTM_PTR TO080(A_DBG_TASK_BOM-DBG_STACK_SIZE)
  19. //--------------------------------ending--------------------------------------------------