3 A bug in pdk code generation for jump on & if all bytes of the mask are 0xff or 0x00 and the highest byte is 0x00.
10 volatile uint8_t block
= 0;
15 for( uint16_t t
=0; t
<0x101; t
++ )
17 if( 0 == (t
&0xFF) ) // BUG: this compare is compiled to "if( 0 == t )"