Mar 21, 2006 #1 VincentWolf Technical User Joined Mar 21, 2006 Messages 1 Location US Can someone please explain the difference between MOV BX, SI and MOV [BX], SI I'm a little confused here. Thanks!
Can someone please explain the difference between MOV BX, SI and MOV [BX], SI I'm a little confused here. Thanks!
Mar 21, 2006 #2 trollacious Programmer Joined Sep 29, 2004 Messages 4,046 Location US The first means move the value stored in SI into the BX register. The second means move the value stored in SI into memory at the address stored in the BX register. Lee Upvote 0 Downvote
The first means move the value stored in SI into the BX register. The second means move the value stored in SI into memory at the address stored in the BX register. Lee