本文介绍了x86 asm 中的括号是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给定以下代码:
L1 db "word", 0
mov al, [L1]
mov eax, L1
括号 ([L1]) 代表什么?
What do the brackets ([L1]) represent?
推荐答案
[L1]
表示地址 L1 处的内存内容.在这里运行mov al, [L1]
后,al
寄存器将在地址L1(字母'w')接收字节.
[L1]
means the memory contents at address L1. After running mov al, [L1]
here, The al
register will receive the byte at address L1 (the letter 'w').
这篇关于x86 asm 中的括号是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!