为什么 ASM 中的工作寄存器有匹配的用途?
在汇编程序中 我们说EAX寄存器是一个累加器寄存器来进行计算 但当我制作 MOV 时,我可以在 EAX 中放入任何我想要的东西,为什么我们这么说呢?
in assembler
we say that the EAX registers is an accumulator register to do calculations
but yet I can put whatever I want in EAX when I make a MOV, why do we say that then?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我们必须将两个数字相加,我们必须先MOV它,然后再添加数字。所以我们得到了结果。如果我们没有 MOV,那么它不会添加两个数字。
if we have to add two numbers in must we have first MOV its and after adding the number. so we have got a result. if we have not MOV so it's not adding in a two number.