我有这个简单的代码:
.data
sum DWORD 0
.code
main:
mov eax,5
add eax,6
INVOKE ExitProcess,0
end main
我在arch linux 64位下使用jwasm,当我运行jwasm -elf64时,我收到此错误:Error A2159: INVOKE requires prototype for procedure
就行了:
INVOKE ExitProcess,0
。
从搜索开始我认为我需要一些包含文件,我发现MASM中需要包含哪些内容但是我使用的是jwasm而不是在windows中,所以我从哪里获得ExitProcess?
PS:
我还在学习x86程序集,这是我的第一个代码,我只熟悉mips程序集。