For some project i am required to draw the memory diagram of assembly code.I know that in assembly language "?" means, values are un-initialized. But what happens exactly in memory when i put "?"?
Lets take the code below
.data
ABC byte 8
ABC byte ?
ABC byte 7
in my memory diagram,should i just put zeros for "?" value or does it keep the previous values in those blocks?