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. |
Describes the available macros.
#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.