Given the following code:
L1 db "word", 0 mov al, [L1] mov eax, L1
What do the brackets ([L1]) represent?
[L1] means the memory contents at address L1. After running mov al, [L1] here, The al register will receive the byte at address L1 (the letter 'w').
[L1]
mov al, [L1]
al
2.1m questions
2.1m answers
60 comments
57.0k users