English
Language : 

CC78K0S Datasheet, PDF (380/520 Pages) NEC – C Compiler Ver.1.30 or Later Language
CHAPTER 11 EXTENDED FUNCTIONS
Binary Constant
Binary constant 0bxxx
EXAMPLE
(C source)
unsigned
i;
i = 0b11100101;
Output object of compiler is the same as the following case.
unsigned
i;
i = 0xE5;
COMPATIBILITY
<From another C compiler to this C compiler>
• Modifications are not needed.
<From this C compiler to another C compiler>
• Modifications are needed to meet the specifications of the compiler if the compiler supports binary constants.
• Modifications into other integer formats such as octal, decimal, and hexadecimal are needed if the compiler
does not support binary constants.
380
User’s Manual U14872EJ1V0UM