Skip to content

Latest commit

 

History

History
81 lines (57 loc) · 1.11 KB

flags.md

File metadata and controls

81 lines (57 loc) · 1.11 KB

Asmc Macro Assembler Reference

Flag conditions

The options listed may be used as directive .IFxx, .WHILExx, and .UNTILxx.

xx

  • A NBE Above | Not Below or Equal

  • B C/NAE Below | Carry | Not Above or Equal

  • C C/NAE Below | Carry | Not Above or Equal

  • G NLE Greater | Not Less or Equal (signed)

  • L NGE Less | Not Greater or Equal (signed)

  • O Overflow (signed)

  • P PE Parity | Parity Even

  • S Signed (signed)

  • Z E Zero | Equal

  • NA BE Not Above | Not Below or Equal

  • NB NC/AE Not Below | Not Carry | Above or Equal

  • NC NC/AE Not Below | Not Carry | Above or Equal

  • NG LE Not Greater | Less or Equal (signed)

  • NL GE Not Less | Greater or Equal (signed)

  • NO Not Overflow (signed)

  • NP PO No Parity | Parity Odd

  • NS Not Signed (signed)

  • NZ NE Not Zero | Not Equal

Note that if used with condition the directive may have a different meaning.

See Also

Directives Reference | Signed compare | Return code