VS2005中C语言和汇编共同编程的问题
我是一个C语言菜鸟,希望高手能抽空看一下:我想在VS2005中建一个工程,然后写一个main.c,和一个real.asm,在main.c中调用real.asm中的一个过程,可是一直不能链接。能帮助一下吗?谢谢
//real.asm
.586
.model flat,stdcall
option casemap:none
PUBLIC _Show;
.code
_Show proc
mov eax,05h;
ret;
_Show endp
end
//main.c
#include <stdio.h>
extern int Show()
int main(void)
{
int i=Show();
printf("%d\n",i);
}
谢谢