Reputation: 35285
I am trying to compile a list of AL instructions that do not affect the EFLAGS register. So far I have:
1) mov
2) push
3) pop
4) lea
5) inc and dec do not change the CF
I am looking for weird/exceptional cases
Upvotes: 3
Views: 1669
Reputation: 12918
There is the excellent table of all x86 instructions - http://ref.x86asm.net/coder32.html
See its columns modif f
, def f
, etc.
Upvotes: 4