The special symbol . refers to the current address that
as is assembling into. Thus, the expression melvin:
.long . defines melvin
to contain its own address.
Assigning a value to .
is treated the same as a .org
directive. Thus, the expression .=.+4 is the same as saying
.space 4.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.