使用Visual Studio从C ++代码调用汇编过程

时间:2015-04-16 13:12:02

标签: c++ assembly

坚持使用Visual Studio,汇编和C ++

C ++:

extern "C" void asm_calculate_reals();
int main()
{
   asm_calculate_reals();
   return 0;
}

大会:

PUBLIC _asm_calculate_reals
.386
.model flat, stdcall
option casemap :none
.stack 100h
.code
_asm_calculate_reals PROC
   ;code goes here
   ret
_asm_calculate_reals ENDP
end

当我构建项目时,Visual Studio会报告以下错误:

error LNK1120 error lnk1120 1 unresolved externals

我实际上无法理解这个简单的程序部分有什么问题。

日志文件:

Build started 16.04.2015 16:53:21.
     1>Project "somepath\Reals loop 3variants.vcxproj" in node 2 (targets Build).
     1>Link:
         somepath\link.exe /ERRORREPORT:PROMPT /OUT:"somepath\Debug\Reals loop 3variants.exe" /INCREMENTAL /NOLOGO somelibs /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"somepath\Debug\Reals loop 3variants.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"somepath\Debug\Reals loop 3variants.lib" /MACHINE:X86 /SAFESEH:NO Debug\main.obj
         Debug\reals.obj
     1>main.obj : error LNK2019: reference to the unresolved external symbol _asm_calculate_reals in function _main
     1>somepath\Debug\Reals loop 3variants.exe : fatal error LNK1120: unresolved identifiers: 1
     1>Building project "somepath\Reals loop 3variants.vcxproj" finished (targets Build) with errors.

Build failed.

2 个答案:

答案 0 :(得分:1)

实际问题出在装配源内的模型定义中。

.model flat, stdcall - 出现错误时。

.model flat, c - 更改为此内容,按预期工作。

答案 1 :(得分:0)

尝试将此行添加到汇编代码 - global _asm_calculate_reals - 使其对链接器可见。程序集中的“global”关键字告诉汇编器从文件外部看到标签。