Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以给我一个例子,如何在 MASM 的数据部分定义浮点数或常量吗?或者至少有一些关于它的信息......
我想它已经完成了
.data myVar REAL4 1.0f .code
Masm 中的浮点值是 REAL4、REAL8 或 REAL10。 表达式(例如#define myConst 1.0f)用 myConst EQU 1.0
myConst EQU 1.0
这些并不特定于任何部分。