C5402DSP汇编编写的FIR滤波器的实现程序
源代码在线查看: table.asm
;
; 版权归解放军理工大学通信工程学院所有
;
; ======== table.asm ========
; DSP串口配置数据表
; AD50寄存器配置表
;
.title "table.asm"
.mmregs
; 定义配置表地址
.def cf_ad50
.def cf_serial
;-------------------------------------------
; AD50配置表
;-------------------------------------------
.sect ".ad50conf"
cf_ad50:
;单路AD50
;.word 0008h ;AD50 configure times
;.word 0300h
;.word 0001h
;.word 0440h
;.word 0001h
;.word 0200h
;.word 0001h
;.word 0104h
;.word 0001h
;两路AD50
;.word 0008h ;AD50 configure times
;.word 0352h ;AD50 configure data
;.word 0001h
;.word 0440h
;.word 0001h
;.word 0200h
;.word 0001h
;.word 0104h
;.word 0106h
;.word 0001h
.word 0x0008
.word 0x0352
.word 0x0001
.word 0x0440
.word 0x0001
.word 0x0200
.word 0x0001
.word 0x0100
.word 0x0001
;-------------------------------------------
; 串口配置表
;-------------------------------------------
.sect ".serconf"
cf_serial:
.word 0x0000,0x0021 ;SPCR12
.word 0x0001,0x0201 ;SPCR22
.word 0x0002,0x0040 ;RCR12
.word 0x0003,0x0040 ;RCR22
.word 0x0004,0x0040 ;XCR12
.word 0x0005,0x0040 ;XCR22
.word 0x000E,0x000C ;PCR1
.end