Style and Symbol Conventions
Throughout this document, certain style and font format conventions are used. Table provides a description of the conventions used in this document.
Symbol or Term | Description |
---|---|
set | To force a bit/register to a value of logic ‘1 ’. |
clear | To force a bit/register to a value of logic ‘0 ’. |
Reset |
|
0xnnnn | Designates the number ‘nnnn’ in the hexadecimal number system. These conventions are used in the code examples. For example, 0x013F or 0xA800. |
: (colon) | Used to specify a range or the concatenation of registers/bits/pins. One example is ACCAU:ACCAH:ACCAL, which is the concatenation of three registers to form the 72-bit Accumulator. Concatenation order (left-right) usually specifies a positional relationship (MSb to LSb, higher to lower). |
[ ] | Specifies bit locations in a particular register. One example is SR[7:5] (or IPL[2:0]), which specifies the register and associated bits or bit locations. |
LSb, MSb | Indicates the Least Significant or Most Significant bit in a field. |
LSB, MSB | Indicates the Least/Most Significant Byte in a field of bits. |
lsw, msw | Indicates the least/most significant word in a field of bits |
Courier New Font | Used for code examples, binary numbers and for instruction mnemonics in the text. |
Times New Roman Font, Italic | Used for equations and variables. |
Times New Roman Font, Bold Italic | Used in explanatory text for items called out from a figure, equation or example. |
Note: | A Note presents information that we want to re-emphasize, either to help the user avoid a common pitfall or to make the user aware of operating differences between some device family members. A note can be in a box, or when used in a table or figure, it is located at the bottom of the table or figure. |