📄 parallelproc.asm
字号:
;
; Project: Experiment 2.10.2 DSP Addressing Mode - Chapter 2
; File name: parallelProc.asm
;
; Description: This function uses DSP indirect addressing mode with
; parallel instructions to perform multiplication with
; add operation.
;
; For the book "Real Time Digital Signal Processing:
; Implementation and Application, 2nd Ed"
; By Sen M. Kuo, Bob H. Lee, and Wenshun Tian
; Publisher: John Wiley and Sons, Ltd
;
; Tools used: CCS v.2.12.07
; TMS320VC5510 DSK Rev-C
;
* * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* parallelProc: Paralle Processing
*
* * * * * * * * * * * * * * * * * * * * * * * * * * *
.def _parallelProc
.text
_parallelProc
;
; Indirect addressing with paralle processing
;
mpym *AR0+,*AR1+,AC0
|| rpt #6
macm *AR0+,*AR1+,AC0
mov AC0,T0
ret
.end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -