Numbers |
Top Previous Next |
By default, numbers are treated as decimals. Integers should fit into 32 bits; floating point numbers should fit into the single precision format (32 bits). The following formats are supported: 1) Decimal integer. Example: 126889 2) Decimal floating point. Examples: 365.678; 2.12e-9 3) Hexadecimal. <%CM%> understands numbers in C format and assembly format. Examples: 0xF6D7; 0F6D7H; 0xFFFF1111 4) Binary. Binary numbers must end with 'B'. Examples: 011101B; 111111111111111000011B 5) Symbol (ASCII). Examples: 'a'; 'ab'; '$B%8'.'.
|