程序如下
assume cs:code
data segment
dd 12345678H
data ends
code segment
start:mov ax,data
mov bx,0
mov [bx],____
mov [bx+2],____
jmp dword ptr ds:[0]
code ends
end start
补全程序,使JMP指令执行后,CS:IP指向程序的第一条指令。
程序如下
assume cs:code
data segment
dd 12345678H
data ends
code segment
start:mov ax,data
mov bx,0
mov [bx],____
mov [bx+2],____
jmp dword ptr ds:[0]
code ends
end start
补全程序,使JMP指令执行后,CS:IP指向程序的第一条指令。
mov [bx],offset start
mov [bx+2],start+2
start是一个标号,又三个属性:段基址,偏移量、类型
mov [bx],ax
mov [bx+2],ax+2