From: Jakob Gruber Date: Tue, 31 Jul 2012 08:45:07 +0000 (+0200) Subject: interrupts: Typo correction (pooling -> polling) X-Git-Tag: v1.0~42 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=da3a776a394e41d3e2d3a3da389ad46ffb61b6a2;p=sx%2Fsimavr.git interrupts: Typo correction (pooling -> polling) --- diff --git a/simavr/sim/sim_interrupts.c b/simavr/sim/sim_interrupts.c index 0d98c9f..a9606a0 100644 --- a/simavr/sim/sim_interrupts.c +++ b/simavr/sim/sim_interrupts.c @@ -98,7 +98,7 @@ avr_raise_interrupt( return 0; } // always mark the 'raised' flag to one, even if the interrupt is disabled - // this allow "pooling" for the "raised" flag, like for non-interrupt + // this allow "polling" for the "raised" flag, like for non-interrupt // driven UART and so so. These flags are often "write one to clear" if (vector->raised.reg) avr_regbit_set(avr, vector->raised);