这是正确的组装吗?
我正在尝试编写比较两个字符串的代码。 假设 string1 由 SI 引用,string2 由 DI 引用,并且每个字符串长度为 50。
这是否正确?
Mov SI,2000H
Mov DI,3000H
Mov CX,50H
CLD
REPNE CMPSW
I am trying to write code that compares 2 strings.
Let's assume that string1 is referred to by SI and string2 is referred to by DI and that each string length is 50.
Is this correct?
Mov SI,2000H
Mov DI,3000H
Mov CX,50H
CLD
REPNE CMPSW
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一些问题:
关于在 CX 中放入什么:好吧,如果您确定字符串的长度始终是 2 CMPSW 的倍数,则速度更快。你只需要调整CX的内容即可
Some problems:
Re what to put in CX: well, if you're certain your string will always have length that's a multiple of 2 CMPSW is faster. You just have to adjust the contents of CX