|
#define | alt_setbits_byte(dest, bits) (alt_write_byte(dest, alt_read_byte(dest) | (bits))) |
|
#define | alt_clrbits_byte(dest, bits) (alt_write_byte(dest, alt_read_byte(dest) & ~(bits))) |
|
#define | alt_xorbits_byte(dest, bits) (alt_write_byte(dest, alt_read_byte(dest) ^ (bits))) |
|
#define | alt_replbits_byte(dest, msk, src) (alt_write_byte(dest,(alt_read_byte(dest) & ~(msk)) | ((src) & (msk)))) |
|
#define | alt_setbits_hword(dest, bits) (alt_write_hword(dest, alt_read_hword(dest) | (bits))) |
|
#define | alt_clrbits_hword(dest, bits) (alt_write_hword(dest, alt_read_hword(dest) & ~(bits))) |
|
#define | alt_xorbits_hword(dest, bits) (alt_write_hword(dest, alt_read_hword(dest) ^ (bits))) |
|
#define | alt_replbits_hword(dest, msk, src) (alt_write_hword(dest,(alt_read_hword(dest) & ~(msk)) | ((src) & (msk)))) |
|
#define | alt_setbits_word(dest, bits) (alt_write_word(dest, alt_read_word(dest) | (bits))) |
|
#define | alt_clrbits_word(dest, bits) (alt_write_word(dest, alt_read_word(dest) & ~(bits))) |
|
#define | alt_xorbits_word(dest, bits) (alt_write_word(dest, alt_read_word(dest) ^ (bits))) |
|
#define | alt_replbits_word(dest, msk, src) (alt_write_word(dest,(alt_read_word(dest) & ~(msk)) | ((src) & (msk)))) |
|
#define | alt_setbits_dword(dest, bits) (alt_write_dword(dest, alt_read_dword(dest) | (bits))) |
|
#define | alt_clrbits_dword(dest, bits) (alt_write_dword(dest, alt_read_dword(dest) & ~(bits))) |
|
#define | alt_xorbits_dword(dest, bits) (alt_write_dword(dest, alt_read_dword(dest) ^ (bits))) |
|
#define | alt_replbits_dword(dest, msk, src) (alt_write_dword(dest,(alt_read_dword(dest) & ~(msk)) | ((src) & (msk)))) |
|
This section implements useful macros to set, clear, change, and replace selected bits within a word in memory or a memory-mapped register.
◆ alt_clrbits_byte
Clear selected bits in the 8 bit byte at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to clear in destination byte |
◆ alt_clrbits_dword
Clear selected bits in the 64 bit doubleword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to clear in destination doubleword |
◆ alt_clrbits_hword
Clear selected bits in the 16 bit halfword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to clear in destination halfword |
◆ alt_clrbits_word
Clear selected bits in the 32 bit word at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to clear in destination word |
◆ alt_replbits_byte
Replace selected bits in the 8 bit byte at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
msk | - Bits to replace in destination byte |
src | - Source bits to write to cleared bits in destination byte |
◆ alt_replbits_dword
Replace selected bits in the 64 bit doubleword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
msk | - Bits to replace in destination doubleword |
src | - Source bits to write to cleared bits in destination word |
◆ alt_replbits_hword
Replace selected bits in the 16 bit halfword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
msk | - Bits to replace in destination halfword |
src | - Source bits to write to cleared bits in destination halfword |
◆ alt_replbits_word
Replace selected bits in the 32 bit word at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
msk | - Bits to replace in destination word |
src | - Source bits to write to cleared bits in destination word |
◆ alt_setbits_byte
Set selected bits in the 8 bit byte at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to set in destination byte |
◆ alt_setbits_dword
Set selected bits in the 64 bit doubleword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to set in destination doubleword |
◆ alt_setbits_hword
Set selected bits in the 16 bit halfword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to set in destination halfword |
◆ alt_setbits_word
Set selected bits in the 32 bit word at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to set in destination word |
◆ alt_xorbits_byte
Change or toggle selected bits in the 8 bit byte at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to change in destination byte |
◆ alt_xorbits_dword
Change or toggle selected bits in the 64 bit doubleword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to change in destination doubleword |
◆ alt_xorbits_hword
Change or toggle selected bits in the 16 bit halfword at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to change in destination halfword |
◆ alt_xorbits_word
Change or toggle selected bits in the 32 bit word at the destination address in device memory.
- Parameters
-
dest | - Destination pointer address |
bits | - Bits to change in destination word |