标题: 如何传递参数给中断处理程序ISR?
[打印本页]
作者: int
时间: 2003-7-12 00:00
标题: 如何传递参数给中断处理程序ISR?
Compiler: Borland C++ 3.1 for DOS
用setvect()设置中断向量
setvect(0x0C, isr_name);
isr_name在c++ 中得原形为 void interrupt (*isr_name)(...);
请问如何向isr_name传递参数
作者: ATLaS
时间: 2003-7-15 00:00
全局变量