[BX]的使用

1、

mov ax,[bx]

功能:bx 中存放的数据作为一个偏移地址 EA,段地址 SA 默认在 ds 中,将 SA:EA处的数据送入 ax 中,即:(ax) = ((ds) * 16 + (bx))。

2、

mov [bx],ax

功能:bx 中存放的数据作为一个偏移地址 EA,段地址 SA 默认在 ds 中,将 ax 中的数据送入内存 SA:EA 处。即:((ds) * 16 + (bx)) = (ax)。

原文地址:https://www.cnblogs.com/fanlumaster/p/13787575.html