Could some kind soul please explain to me what
this C macro does ?
this C macro does ?
The INDEXTOSTATEIMAGEMASK macro is defined as follows:
#define INDEXTOSTATEIMAGEMASK(i) ((i) << 12)
Looks like a logical shift left by 12 bits.
INDEXTOSTATEIMAGEMASK macro i:REQ
EXITM %((i) SHL 12)
ENDM
Thanks for the translation bitRAKE, I'll try it out now :grin: