I am trying to learn 8086 assembly. this is the stack part of a 8086 assembly code :
STACK SEGMENT STACK
DW 50 DUP(?)
TOP_STACK Label Word
STACK ENDS
what is the purpose of TOP_STACK Label Word
?
i couldn't find Label
keyword in 8086 instruction set.
is this line a directive or an instruction? and what is the application of TOP_STACK
?
is TOP_STACK
a variable or should I use it like a variable?