load.asm
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. ; ;  Copyright 2003 by Texas Instruments Incorporated. ;  All rights reserved. Property of Texas Instruments Incorporated. ;  Restricted rights to use, duplicate or disclose this code are ;  granted through contract. ;   ; ; "@(#) DSP/BIOS 4.90.270 06-11-03 (barracuda-m10)" ;
  2. ;  ======== load.asm ========
  3. ;
  4. ;  C-callable interface to assembly language utility functions for the
  5. ;  volume example.
  6.         .global _load
  7.         .text
  8. N       .set    1000
  9. ;
  10. ;  ======== _load ========
  11. ;  This function simulates a load on the DSP by executing N * loopCount
  12. ;  instructions, where loopCount is the input parameter to load().
  13. ;
  14. ;      void _load(int loopCount)
  15. ;
  16. ;  The loop is using 8 instructions. One instruction for sub, nop and
  17. ;  b, plus nop 5. The extra nop added after sub is to make the number
  18. ;  of instructions in the loop a power of 2.
  19. ;
  20. _load:
  21.         mv a4, b0               ; use b0 as loop counter
  22.   [!b0] b lend  
  23.         mvk N,b1
  24.         mpy b1,b0,b0
  25.         nop
  26.         shru b0,3,b0            ; (loop counter)= (# loops)/8 
  27. loop:
  28.         sub b0,1,b0
  29.         nop
  30.    [b0] b loop
  31.         nop 5
  32. lend:   b b3
  33.         nop 5                   ; return
  34.         
  35.         .end