-2

最近,我开始学习汇编和计算机物理东西,当我开始编写汇编代码时,我试图链接我正在使用的书给我的第一个程序,但每当我尝试这样做时,我都会收到以下错误消息:

E:\masm32\code.asm(1) : error A2008: syntax error : floating point constant
E:\masm32\code.asm(2) : error A2085: instruction or register not accepted in cur
rent CPU mode

\masm32\include\windows.inc(78) : error A2119: language type must be specified
                                 ...
\masm32\include\masm32.inc(153) : error A2119: language type must be specified
\masm32\include\masm32.inc(154) : fatal error A1012: error count exceeds 100; st
opping assembly

我在 windows xp 上使用 MASM32 & 我试图组装和链接的代码:

386.
model flat, stdcall.
option casemap :none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\masm32.inc
includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\masm32.lib
data.
HelloWorld db "Hello World!", 0
code.
start:
invoke StdOut, addr HelloWorld
invoke ExitProcess, 0
end start

&Thnx提前。

4

1 回答 1

2

你把点放在了错误的地方。他们应该给指令加前缀,而不是后缀:

.386
.model flat, stdcall
于 2013-08-30T16:28:15.293 回答