2.4.4Initial_low, active_high Interrupt source
If the PC0 is a initial_low, active_high signal, the interrupt service routine should use INV0 to
Initial setting:
|
| now_int_state=0; | /* initial state for PC0 | */ |
|
|
|
|
|
| ||||
|
| outportb(wBase+0x2a,1); | /* select the |
|
|
|
|
| ||||||
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
void interrupt irq_service() |
|
|
|
|
|
|
|
|
| |||||
{ |
|
|
|
| /* now PC0 is changed to LOW |
| */(c) | |||||||
if (now_int_state==1) |
|
| ||||||||||||
{ |
|
|
| /* |
| */ |
|
| ||||||
|
| COUNT_L++; |
| /* find a LOW_pulse (PC0) |
| */ |
|
| ||||||
|
| If((inport(wBase+7)&1)==0)/* the PC0 is still fixed in LOW | */ |
|
| |||||||||
{ |
|
|
| /* | Æ need to generate a high_pulse | */ |
|
| ||||||
|
| outportb(wBase+0x2a,1);/* | INV0 select the | */(d) | ||||||||||
|
|
|
|
|
| /* | INT_CHAN_0=PC0=LOW |
| */ |
|
| |||
|
| now_int_state=0; |
| /* | INT_CHAN_0 generate a high_pulse | */ |
|
| ||||||
|
|
| /* now PC0=LOW |
|
|
| */ |
|
| |||||
} |
|
|
| /* now PC0=HIGH |
|
|
| */ |
|
| ||||
|
| else now_int_state=1; |
|
|
|
|
| |||||||
} |
|
|
| /* don’t have to generate high_pulse | */ |
|
| |||||||
|
|
| /* now PC0 is changed to HIGH |
| */(a) | |||||||||
else |
|
| ||||||||||||
{ |
|
|
| /* |
| */ |
|
| ||||||
|
| COUNT_H++; |
| /* find a High_pulse (PC0) |
| */ |
|
| ||||||
|
| If((inport(wBase+7)&1)==1)/* the PC0 is still fixed in HIGH | */ |
|
| |||||||||
{ |
|
|
| /* need to generate a high_pulse | */ |
|
| |||||||
|
| outportb(wBase+0x2a,0);/* INV0 select the inverted input */(b) | ||||||||||||
|
|
|
|
|
| /* INT_CHAN_0=!PC0=LOW |
| */ |
|
| ||||
|
| now_int_state=1; |
| /* INT_CHAN_0 generate a high_pulse | */ |
|
| |||||||
|
|
| /* now PC0=HIGH |
|
|
| */ |
|
| |||||
} |
|
|
| /* now PC0=LOW |
|
|
| */ |
|
| ||||
|
| else now_int_state=0; |
|
|
|
|
| |||||||
} |
|
|
| /* don’t have to generate high_pulse | */ |
|
| |||||||
|
|
|
|
|
|
|
|
|
|
|
| |||
if (wIrq>=8) outportb(A2_8259,0x20); |
|
|
|
|
|
|
| |||||||
outportb(A1_8259,0x20); |
|
|
|
|
|
|
|
|
|
| ||||
} |
|
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
| (a) | (b) |
|
| (c) | (d) |
|
|
|
| ||
|
|
|
|
|
|
|
|
|
|
|
|
| ||
|
| PC0 |
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INV0
INT_CHAN_0