汇编程序6:检测点3.2(逆序复制数据)
1 检测点3.2 2 解答如下: 3 (1) 4 mov ax,1000H 5 mov ds,ax 6 mov ax,2000H 7 mov ss,ax 8 mov sp,0010H 9 push [0] 10 push [2] 11 push [4] 12 push [6] 13 push [8] 14 push [A] 15 push [C] 16 push [E] 17 (2) 18 mov ax,2000H 19 mov ds,ax 20 mov ax,1000H 21 mov ss,ax 22 mov sp,0010H 23 pop [E] 24 pop [C] 25 pop [A] 26 pop [8] 27 pop [6] 28 pop [4] 29 pop [2] 30 pop [0]