【发布时间】:2013-08-30 15:39:18
【问题描述】:
最近,我开始学习关于汇编和计算机物理的东西,当我开始编写汇编代码时,我试图链接我正在使用的书给我的第一个程序,但每当我尝试这样做时,我都会得到以下信息错误信息:
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
& 提前谢谢。
【问题讨论】: