请教一个ClearPending的问题#define ClearPending(bit) {\
rSRCPND = bit;\
rINTPND = bit;\
rINTPND;\
}
2440的英文手册中When the interrupt
sources request interrupt the service, the corresponding bits of SRCPND register are set to 1, and at the same time,,意思是可以同时多位为1,而INTPND一个时刻只能一个为1,那这样直接等于来清零的话,对其他位没影响吗?清零的话到底是置1还是置0呢?