Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在寄存器 ax 中有一个 2 字节大小的缓冲区和一些值(不是地址),现在我写
mov buffer,ax mov [buffer],ax
这些疑问对我来说很常见,因为我是组装新手。请给我推荐一些不错的文字,这样我就可以消除我对内存寻址的疑虑。提前致谢。
没有区别!
编译器应该将两条指令编译成相同的操作码。方括号内的数字[]被认为是内存地址。
[]
因为被buffer声明为单词 ptr ,所以不需要再次声明。
buffer