•  Back 
  •  Assembler 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : Pure Assembler Documentation
Author      : John Kormylo
Version     : PASM.HYP 1.0
Subject     : Documentation/Pure Assembler
Nodes       : 740
Index Size  : 20262
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ Condition Codes ]

Condition Codes                          SR Flags

HI  higher (unsigned compare)            !C && !Z
LS  lower or same (unsigned compare)     C || Z
CC  carry clear                          !C
CS  carry set                            C
NE  not equal                            !Z
EQ  equal                                Z
VC  overflow clear                       !V
VS  overflow set                         V
PL  plus                                 !N
MI  minus                                N
GE  greater or equal                     N == V
LT  less than                            N != V
GT  greater than                         (N == V) && !Z
LE  less than or equal                   (N != V) || Z
T   true                                 1
F   false                                0

See also Status Register