FLAGS
CLICK HERE TO BUY THE CD
The 6502 cpu contains a status register and each individual bit is a FLAG.

A flag indicates the result of the previous operation.

N result is negative
V result too big, causing an overflow
B  set by software BRK command
D  in decimal mode
I   an interrupt has occurred
Z  result zero
C carry

The flags are tested by the cpu and, depending on their state, determine which part of the program the cpu will jump to.

This is how computers are able to make decisions.


Copyright Graham Knott 1999