I have this code here, but I'm unfamiliar with the syntax.
STACK16_SIZE = 100h
stack16 db STACK16_SIZE dup (?)
I think dup
means we declare a variable of type array, as this is a stack, but I'm not sure. So what does dup
mean in TASM, exactly?