; ==========================================
; pmtest8.asm
; 编译方法:nasm pmtest8.asm -o pmtest8.com
; ==========================================
org 0100h
Beginning:
mov eax, Func
call Func ;相对于Next_Commend的跳转
Next_Commend:
Func:
;.........
对应的机器指令: 66B809010000 E80000
org 0100h
Beginning:
mov eax, Func
call eax ;eax直接传给eip吧
Func:
;.........
对应的机器指令: 66B809010000 66FFD0
阅读(838) | 评论(0) | 转发(0) |