Macros
Defines |
#define | quvi_lobyte(w) ((quvi_byte)((uint64_t)(w) & 0xff)) |
| Return a low byte from a word type variable.
|
#define | quvi_hibyte(w) ((quvi_byte)((uint64_t)(w) >> 8)) |
| Return a high byte from a word type variable.
|
#define | quvi_loword(l) ((quvi_word)((uint64_t)(l) & 0xffff)) |
| Return a low word from a long type variable.
|
#define | quvi_hiword(l) ((quvi_word)((uint64_t)(l) >> 16)) |
| Return a high word from a long type variable.
|
Detailed Description
Describes the available macros.
Define Documentation
#define quvi_lobyte |
( |
w |
|
) |
((quvi_byte)((uint64_t)(w) & 0xff)) |
Return a low byte from a word type variable.
#define quvi_hibyte |
( |
w |
|
) |
((quvi_byte)((uint64_t)(w) >> 8)) |
Return a high byte from a word type variable.
#define quvi_loword |
( |
l |
|
) |
((quvi_word)((uint64_t)(l) & 0xffff)) |
Return a low word from a long type variable.
- Examples:
- quvi.c, and simple.c.
#define quvi_hiword |
( |
l |
|
) |
((quvi_word)((uint64_t)(l) >> 16)) |
Return a high word from a long type variable.
- Examples:
- quvi.c, and simple.c.