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
There is the excellent table of all x86 instructions - http://ref.x86asm.net/coder32.html
See its columns modif f
, def f
, etc.