2 lines
165 B
Text
2 lines
165 B
Text
add bx, 2 ;add 2 to bx. bx contains the memory address of the first "l" in "Hello"
|
|
mov al,[ds:bx] ;dereference the pointer and store the value it points to into al.
|