



被除数:默认放在ax 或者dx ax








分类 段内转移
段间转移


添加两条指令,让改程序在运行中将s处的一条指令复制到s0处
s: mov ax,bx
mov si,offset s
mov di,offset s0
mov cx,cs:[si]
mov cs:[di],cx
s0: nop
nop


jmp short s
立即数在机器指令中是有所体现的













call
push ip
ip=ip+16位位移

1 cs ip 都压栈
再跳转











计算2的n次


call以后压栈ip
改ip














