|
SETB bit Set bit Words: 1 Cycles: 1 Affects: none
Operation: Bit is set to 1.
Coding: BSF bit
Note: The TechTools assemblers define a bit as port.bitposition, as in the following examples:
RA.3 = bit 3 of port A PortB.0 = bit 0 of port B
STC Set carry Words: 1 Cycles: 1 Affects: C
Operation: C is set to 1.
Coding: BSF 3,0
STZ Set zero flag Words: 1 Cycles: 1 Affects: Z
Operation: Z is set to 1.
Coding: BSF 3,2 |

