NEGATE
Multiply the operand by -1.
| Opcode | Bytes | Cycles | Form | Example |
|---|---|---|---|---|
| $37 | 2 | 3 | negate b:_ | negate b:1 |
| $38 | 2 | 3 | negate p:_ | negate p:2 |
| $39 | 2 | 3 | negate i:_ | negate i:4 |
| Condition flag | Output |
|---|---|
| zero (ZF) | If the value is zero, this flag is 1; otherwise it is 0. |
| negative (NF) | If the signed result is a negative number, this flag is 1; otherwise it is 0. |
| overflow (OF) | This flag is always 0. |
| carry (CF) | This flag is always 0. |
Notes
-
This operation is equivalent to subtracting the operand from 0 using
subtract. -
Replaces the value of the operand with its two's complement.