我有一个包含 C 代码和汇编代码的示例项目,有Main.c
,Main.h
和convert.S
.
在汇编代码convert.S
中有以下代码:
.global
.section .bss
.section .text
.global _FIL_2ORD
_FIL_2ORD:
在 convert.h 文件中:
extern int FIL_2ORD(
tFIL2HISTORY *history;
tFIL2COEFF *coeff;
int input;
);
在 Main.c 函数内部,如果它调用FIL_2ORD();
,那么它是否会通过convert.h
文件中声明的汇编代码内部的函数来解析?
我的问题是汇编代码是否会被编译和链接,每当main.c
调用该函数时,它会被引用和解析吗?