This line is attempting to figure out if ax contains any 1s.
But what is its equivalent high level statement for it?
Thanks
Jack
Printable View
This line is attempting to figure out if ax contains any 1s.
But what is its equivalent high level statement for it?
Thanks
Jack
You didn't specify which high-level language. In C++, for instance, it is as simple as if (ax != 0) (or of course, but that would be less clear for one who's not familiar with C++, its short form if (ax)).
Just BTW, if you really need to ask questions like this one (or the one over there in the VC++ section), I doubt assembly is the language for you...
Thanks Eri, that solves my puzzle