Changeset 54713 in vbox for trunk/include/iprt/asmdefs.mac
- Timestamp:
- Mar 11, 2015 1:59:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asmdefs.mac
r54690 r54713 73 73 74 74 ;; 75 ; Make the mask for the given bit. 76 %define RT_BIT_32(bit) (1 << bit) 77 78 ;; 75 79 ; Makes a 32-bit unsigned (not type safe, but whatever) out of four byte values. 76 80 %define RT_MAKE_U32_FROM_U8(b0, b1, b2, b3) ( (b3 << 24) | (b2 << 16) | (b1 << 8) | b0 )
Note:
See TracChangeset
for help on using the changeset viewer.