I'm a little bit confused with stack segment (ss) and stack pointer (sp) registers . when the stack is empty, is the sp value equal to the ss value ? I read that when we push a word (2bytes) to the stack the sp is decremented by 2, if the first statement is true (sp=ss) then i can say if the stack is not empty the stack pointer's value is always smaller or equal to the value of the stack segment is this true ??. what happens if we affect a value to sp so that it is bigger than ss ?? ie: mov ss,200h mov sp,400h mov ax,1010h push ax
please correct any mistakes, thanx in advance