masm 如何在变量定义中使用符号名称?
在.data部分我已经定义了:
MyString byte "This is my string",0h
但是如何设置一个等于MyString的变量?
谢谢!
in .data section i have defined:
MyString byte "This is my string",0h
but how can I set a variable equal to MyString??
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是要初始化一个指针变量以指向您的字符串,还是要将字符串的内容复制到不同的字符串缓冲区?
在我的脑海中,前者会是这样的:
后者会是这样的
Do you mean you want to initialize a pointer variable to point to your string, or do you want to copy the content of the string to a different string buffer?
Off the top of my head, the former would be something like this:
The latter would be something like