MASM32 中这种声明的语法是什么?

发布于 2024-10-21 19:47:52 字数 166 浏览 0 评论 0原文

szCaption db 'System Information', 0

我现在理解这样的声明:

var_name type default_value

它有 3 个部分。但是上面声明的语法是什么?

szCaption db 'System Information', 0

I now understand such declarations:

var_name type default_value

Which has 3 parts. But what's the syntax for the declarations above?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若相惜即相离 2024-10-28 19:47:52

实际上,更好的描述是:

var_name type comma-separated list of values

在您的示例中,字符串中的每个字符都是一个字节。尾随零也是如此。 MASM 允许字符或数字。

您的示例形成一个以 null 结尾的字符串。

Actually, a better description is:

var_name type comma-separated list of values

In your example, each character in the string is a byte. And so is the trailing zero. MASM allows either characters or numbers.

Your example forms a null-terminated string.

左岸枫 2024-10-28 19:47:52

db 实际上代表“定义字节”,并且可以接受带引号的字符串(单引号或双引号)和数字作为参数,以逗号分隔。

db actually stands for 'define bytes' and can accept as arguments quoted strings (single or double quotes) and numbers, separated by commas.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文