Stack Overflow of 8086 microprocessor
问题 What'll be the behaviour of the 8086 Microprocessor when the stack is full and even then I push something into it? 回答1: On the 8086, a PUSH instruction or implicit stack push will decrement the SP register by two and store the appropriate quantity at SS:SP (i.e. 16*SS+SP). If the SP register was $0000, the data will go to SS:$FFFE. If the SP register was $0001, the MSB of the data will go to SS:$0000 and the LSB will go to SS:$FFFF. The processor will not take any special notice of the stack