MOVWF

Move W to f

Move data from W to register 'f'.

[the_ad id="3059"]

Syntax:

[ label ] MOVWF f

Operation:

(W) → (f),

Operands:

  • f is from 0 to 127

Status Affected: None

Example:

MOVWF REG

Before instruction:

REG = 0x02
W = 0x0F

After instruction:

REG = 0x0F
W = 0x0F

[the_ad id="3059"]