高手来指点一下
void interrupt ( *oldhandler)(__CPPARGS);void interrupt newhandler(__CPPARGS) /* 新的时钟中断处理函数 */
{
TimerCounter++; /* increase the global counter */
oldhandler(); /* call the old routine */
}
上面的 interrupt是什么意思啊
*oldhandler这个是指针吗?
后面括号里的是参数?)__CPPARGS是什么意思?》