Given the following code:
L1 db \"word\", 0 mov al, [L1] mov eax, L1
What do the brackets ([L1]) represent?
Direct memory addressing - al will be loaded with the value located at memory address L1.
al
L1