English
Language : 

CC78K4 Datasheet, PDF (390/523 Pages) NEC – CC78K4 Ver.2.30 or Later, C Compiler 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
• Modification is required 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.
390
User’s Manual U15556EJ1V0UM