JC = Jump if carry set (C=1)
JNC = Jump if carry is not set (C=0)
JZ = Jump if zero-flag is set
JNZ = Jump if zero-flag is not set
JEQ = Jump if equal => another 'name' for JZ
(There are many instruction aliases').
가장 높은 비트가 설정된 두 개의 숫자를 추가하면 원래 숫자보다 1 비트 길게 결과가 나타납니다. 이 새로운 비트는 "이동"합니다. 그것은 또한 subtrow에서 borrow-flag로 사용됩니다. 비교는 결과 값이 저장되지 않는 것을 제외하고 빼기와 같습니다.
Status Bits N: Set if result is negative, reset if positive
Z: Set if result is zero, reset otherwise
C: Set if there is a carry from the MSB of the result, reset otherwise.
Set to 1 if no borrow, reset if borrow.
V: Set if an arithmetic overflow occurs, reset otherwise.
: SBC는 플래그로하는 일이다