在HVLLC主程序中,有如下定义
extern volatile long *ADCDRV_1ch_Rlt7; // Vout
volatile long Vout;
ADCDRV_1ch_Rlt7 = &Vout;
在中断程序中,有下面的说明
; publish Terminal Pointers for access from the C environment
.def _ADCDRV_1ch_Rlt:n:
C语言和ASM语言是怎么建立起来的联系呢?
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.
在HVLLC主程序中,有如下定义
extern volatile long *ADCDRV_1ch_Rlt7; // Vout
volatile long Vout;
ADCDRV_1ch_Rlt7 = &Vout;
在中断程序中,有下面的说明
; publish Terminal Pointers for access from the C environment
.def _ADCDRV_1ch_Rlt:n:
C语言和ASM语言是怎么建立起来的联系呢?