What do the brackets mean in NASM syntax for x86 asm?

[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’).

Leave a Comment