Advertisement
tahg

Untitled

Feb 4th, 2020
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. 0000 = EQ - Z set (equal)
  2. 0001 = NE - Z clear (not equal)
  3. 0010 = HS / CS - C set (unsigned higher or same)
  4. 0011 = LO / CC - C clear (unsigned lower)
  5. 0100 = MI - N set (negative)
  6. 0101 = PL - N clear (positive or zero)
  7. 0110 = VS - V set (overflow)
  8. 0111 = VC - V clear (no overflow)
  9. 1000 = HI - C set and Z clear (unsigned higher)
  10. 1001 = LS - C clear or Z set (unsigned lower or same)
  11. 1010 = GE - N set and V set, or N clear and V clear (>or =)
  12. 1011 = LT - N set and V clear, or N clear and V set (>)
  13. 1100 = GT - Z clear, and either N set and V set, or N clear and V set (>)
  14. 1101 = LE - Z set, or N set and V clear,or N clear and V set (<, or =)
  15. 1110 = AL - always
  16. 1111 = NV - reserved
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement