I met a problem about the Current Location Counter in MASM.
Here is my assembly code, and I used Visual Studio 2013 Express for assembling
.386
.model flat,stdcall
.stack 8192
ExitProcess proto,dwExitCode:dword
.data
ptr1 DWORD $
ptr2 DWORD $
ptr5 DWORD $
.code
main proc
mov eax, $
mov eax, $
invoke ExitProcess,0
main endp
end main
In my opinion, I think that ptr1, ptr2, and ptr5 should have their own location value.
But it's not correct in fact.
When in debugging mode, the variables show the same result.
ptr1, ptr2, ptr5 have the same address and there is no offset between them.
What's problem when using $ for declaration ?
In MASM, the
$
symbol represents the current value of the location counter. The location counter is a variable maintained internally by the assembler while it is processing your code. When a segment is first encountered, the assembler sets the location counter to zero. Then, as it encounters instructions or pseudo-opcodes, it increments the location counter for each byte that is output as object code.Variable declarations don't count. Because they are not instructions or pseudo-opcodes, they don't cause the location counter to be incremented.
Granted, the MSDN documentation is lousy. Here's what Randall Hyde's The Art of Assembly Language has to say on the location counter (Chapter 8, Section 2, of the 16-bit DOS edition):
In short, the location counter is only incremented by lines that cause object code to be produced.
You can explicitly add an offset value to
$
if you want. But I'm not really sure why you would want to do this...