以下是引用lefttime在2006-12-21 15:27:12的发言:
如果只是
假设temp指向的地址是1234h,而偏移量为1234h开始存放的数据为5678h
那么:
mov ax,temp ;ax=7856h
mov ax,temp+2 ;ax=? 这个没给出,所以不知道
mov ax,offset temp ;ax=1234h
mov ax,offset temp+2 ;ax=1236h
lea ax,temp ;ax=1234h
lea ax,tem+2 ;ax=1236h
谢谢!
mov ax,temp+2 ;ax不是等于5678h+2吗?