// Bits complement test, on MicroBoard // Do notice the on/off pattern of the LED bars main() { int i; i = 0xAA; // bits: 10101010 loop { writeb(0, i, 1000); i = ~i; // bits: 01010101 } }