summaryrefslogtreecommitdiff
path: root/inc/IncludeLibrary_inverse_mimot.h
blob: b8db921d250428909773444384fa8b925d641c01 (plain)
1
2
3
4
5
6
#define inverse_mimot(a)\
(0 | (( a & 0x000000ff ) << 8  )\
|    (( a & 0x0000ff00 ) >> 8  )\
|    (( a & 0x00ff0000 ) << 8  )\
|    (( a & 0xff000000 ) >> 8  ) )