在ti的汇编语言支持库中有很多类似这样的定义:_CNTL_2P2Z_Ref:n: .usect "CNTL_2P2Z_Section",2,1,1
_PWMDRV_1ch_UpDwnCnt_Duty:n: .usect "PWMDRV_1ch_UpDwnCnt_Section",2,1,1
_CNTL_3P3Z_DBUFF:n: .usect "CNTL_3P3Z_Section",14,1,1
这里面的2,1,1或者14,1,1是什么意思啊?谢谢
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
在ti的汇编语言支持库中有很多类似这样的定义:_CNTL_2P2Z_Ref:n: .usect "CNTL_2P2Z_Section",2,1,1
_PWMDRV_1ch_UpDwnCnt_Duty:n: .usect "PWMDRV_1ch_UpDwnCnt_Section",2,1,1
_CNTL_3P3Z_DBUFF:n: .usect "CNTL_3P3Z_Section",14,1,1
这里面的2,1,1或者14,1,1是什么意思啊?谢谢
用的芯片是F28035,程序是CNTL_3P3Z.asm
CNTL_3P3Z_INIT .macro n
;=============================
; allocate memory space for data & terminal pointers
_CNTL_3P3Z_Ref:n: .usect "CNTL_3P3Z_Section",2,1,1 ; reference input terminal
_CNTL_3P3Z_Fdbk:n: .usect "CNTL_3P3Z_Section",2,1,1 ; feedback input terminal
_CNTL_3P3Z_Out:n: .usect "CNTL_3P3Z_Section",2,1,1 ; output terminal
_CNTL_3P3Z_Coef:n: .usect "CNTL_3P3Z_Section",2,1,1 ; coefficients & saturation limits (14 words)
_CNTL_3P3Z_DBUFF:n: .usect "CNTL_3P3Z_Section",14,1,1 ; internal Data BUFF
前面的2是两个字节,后面的1,1是什么意思呢?我看了参考手册,里面没有找到这种用法