Digit separator

Decimal, octal, hexadecimal or binary integer constants can be made more readable with the '_' character. This extension (inspired by the ADA language) is useful for highlighting bit fields.
T2CON = 0b0_1110_0_11 ; // same as  0b01110011, but highlight bits fields



Alain Gibaud 2015-07-09