assume cs:code
code segment
mov ax, 4c00H
int 21h
start: mov ax, 0
s: nop
nop
mov di, offset s
mov si, offset s2
mov ax, cs:[si]
mov cs:[di], ax
;取得s和s2偏移地址分别存放到di和si中
;之后将s2处对应的指令转移到s的第一个指令
s0: jmp short s
;跳转到标号s处
;因为已经将s处的第一条指令更改为s2的第一条指令,所以执行imp short s1
;jmp short s1 的机器码是s2相对于s1的位移偏移量为F6,偏移量又是由补码来表示的,F6的补码表示为10进制的-10
;即将当前的IP值-10,即为0008,即指向code的初始位置,程序正常终止
s1: mov ax, 0
int 21h
mov ax, 0
s2: jmp short s1
nop
code ends
end start