SPRUIG8K January 2018 – March 2025
You can specify constants with either of two syntax schemes: the scheme used for specifying decimal, octal, or hexadecimal constants (but not binary constants) used in the assembler or the scheme used for integer constants in C syntax. For example:
| Format | Decimal | Octal | Hexadecimal |
|---|---|---|---|
| Assembler format | 32 | 40q | 020h |
| C format | 32 | 040 | 0x20 |