DSP281x_DBGIER.asm
上传用户:qingfan3
上传日期:2014-10-27
资源大小:31439k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. ;//###########################################################################
  2. ;//
  3. ;// FILE:  DSP281x_DBGIER.asm
  4. ;//
  5. ;// TITLE: Set the DBGIER register
  6. ;//
  7. ;// DESCRIPTION:
  8. ;//  
  9. ;//  Function to set the DBGIER register (for realtime emulation).
  10. ;//  Function Prototype: void SetDBGIER(Uint16)
  11. ;//  Useage: SetDBGIER(value);
  12. ;//  Input Parameters: Uint16 value = value to put in DBGIER register. 
  13. ;//  Return Value: none          
  14. ;//
  15. ;//###########################################################################
  16. ;//
  17. ;//  Ver | dd mmm yyyy | Who  | Description of changes
  18. ;// =====|=============|======|===============================================
  19. ;//  1.00| 11 Sep 2003 | L.H. | No changes since v.58
  20. ;//########################################################################### 
  21. .global _SetDBGIER
  22. .text
  23. _SetDBGIER:
  24. MOV  *SP++,AL
  25. POP  DBGIER
  26. LRETR