What exactly does this dot mean in ARM assembly?

351 views Asked by At

This is my ARM assembly code:

AREA MyData, DATA
V SPACE 4
N EQU .

I've noticed the next memory address, after the block reserved by SPACE, is stored in N thanks to EQU and the dot.

However, I haven't found any information about what exactly that dot is and what it does. Does anyone know what its "technical" name is?

0

There are 0 answers