调用中断程序
int 0
成对编程。
CPU执行int 7ch
pushf
push CS
push IP
执行iret
pop IP
pop CS
popf
int和iret配合使用, call和ret指令配合使用。
有了函数有了过程就有了栈,因为函数有局部变量。
BIOS和DOS中断例程的安装过程
- BIOS:base input output system 基础输入输出系统
- DOS:读内存 刷新内存 检查内存
调用中断程序
int 0
成对编程。
CPU执行int 7ch
pushf
push CS
push IP
执行iret
pop IP
pop CS
popf
int和iret配合使用, call和ret指令配合使用。
有了函数有了过程就有了栈,因为函数有局部变量。
BIOS和DOS中断例程的安装过程