Given the following code:
L1 db \"word\", 0 mov al, [L1] mov eax, L1
What do the brackets ([L1]) represent?
It indicates that the register should be used as a pointer for the actual location, instead of acting upon the register itself.