Please read this page from the main YASEP interface
version 2012-11-23

MOVH : MOVe Halfword High

This instruction overwrites the high halfword of a register. Like MOV, this instruction copies the lower part to the destination but the higher bits come from either

This instruction is created to create 32-bits data in YASEP32 with code sequences such as:

; put 12345678h in R1
 MOV  5678h R1 ; first, write the LSB
 MOVH 1234h R1 ; then overwrite the MSB