PUSH IP: db 0E8h, db 0, db 0
POP CS (only 8086): db 0Fh
LOADALL (386): db 0Fh, db 07h
db 0D6h: This will set AL to 0 when CF=0, otherwise AL = 0FFh
I didn't test them, but have fun. Also you are free to expand this article by yours, if you found any

There's a reason this is undocumented. What does this actually expand to when it's de-microcoded? What is IP? With an architecture such as the x86 "IP" can hold one of 30-more different values depending whereabouts in the pipeline you are. At what point in the pipeline is the value of IP taken?PUSH IP: db 0E8h, db 0, db 0
Code: Select all
db 0xE8,0,0
Code: Select all
call @F
@@: