mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
fix: shifting signed 32-bit value by 31 bits is undefined behaviour
This commit is contained in:
parent
4aeff95259
commit
d9308d912d
4 changed files with 7 additions and 7 deletions
|
@ -375,7 +375,7 @@ typedef struct _AT91S_DBGU {
|
|||
#define AT91C_US_TXBUFE (0x1 << 11) // (DBGU) TXBUFE Interrupt
|
||||
#define AT91C_US_RXBUFF (0x1 << 12) // (DBGU) RXBUFF Interrupt
|
||||
#define AT91C_US_COMM_TX (0x1 << 30) // (DBGU) COMM_TX Interrupt
|
||||
#define AT91C_US_COMM_RX (0x1 << 31) // (DBGU) COMM_RX Interrupt
|
||||
#define AT91C_US_COMM_RX (0x1u << 31) // (DBGU) COMM_RX Interrupt
|
||||
// -------- DBGU_IDR : (DBGU Offset: 0xc) Debug Unit Interrupt Disable Register --------
|
||||
// -------- DBGU_IMR : (DBGU Offset: 0x10) Debug Unit Interrupt Mask Register --------
|
||||
// -------- DBGU_CSR : (DBGU Offset: 0x14) Debug Unit Channel Status Register --------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue