特牛网址导航

C中调用汇编函数_vc6.0中在c文件中调用.asm文件中的函数-CSDN博客

网友收藏
文章浏览阅读1.2k次。C中调用汇编函数文件结构:objsrcmakefile// src/c/main_c.c#include "asm.h"int main_c(){ int a = 10; int b = 20; int c = asm_add(a, b); int d = asm_sub(a, b); return 0;}# src/asm/asm_base.S.text.globl asm_add.globl asm_subasm_add_vc6.0中在c文件中调用.asm文件中的函数