PM Opc NOT

From SublabWiki
Revision as of 19:59, 17 April 2009 by JustBurn (talk | contribs) (New page: == NOT = Logical NOT == {| border="1" style="text-align:left" !Hex !Mnemonic !Cycles |- |CE A0 |NOT A |12 |- |CE A1 |NOT B |12 |- |CE A2 |NOT [N+#nn] |20 |- |CE A3 |NOT [HL] |16 |} === E...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

NOT = Logical NOT

Hex Mnemonic Cycles
CE A0 NOT A 12
CE A1 NOT B 12
CE A2 NOT [N+#nn] 20
CE A3 NOT [HL] 16

Execute

A       = Register A
B       = Register B
[N+#nn] = Memory: (I shl 16) or (N shl 8) or #nn
[HL]    = Memory: (I shl 16) or HL
; NOT Ds
;
; Ds = Source/Destination

Ds = Ds XOR $FF

Description

8-Bits Destination is inverted (all bits).

Conditions

Zero: Set when result is 0

Sign: Set when 7th bit of the result is 1

Examples

; A = 0x01
NOT A
; A = 0xFE
; F = (Zero = 0):(Sign=1)
; B = 0x85
NOT B
; B = 0x7A
; F = (Zero = 0):(Sign=0)
; [HL] = 0xFF
NOT [HL]
; [HL] = 0x00
; F = (Zero = 1):(Sign=0)

« Back to Instruction set