Does anybody know how to find the power of a value in x86 assembly,
Is it possible to shift by the number of times in a value?
For example:
mov x, 30
shl eax, x
For my example I would like to find 2^32,2^31,2^30.....2^0.
Any help would be much appreciated.
Thank you.