88. MOVE signed 8-bit data Quick

88.1. Name

MOVEQ -- Move signed 8-bit data quick

88.2. Synopsis

        MOVEQ        #<data:8>,Dn

        Size = (Long)

88.3. Function

Move signed 8-bit data to the specified data register. The specified data is sign extended to 32-bits before it is moved to the register.

88.4. Format

        -----------------------------------------------------------------
        |15 |14 |13 |12 |11 |10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
        |---|---|---|---|-----------|---|-------------------------------|
        | 0 | 1 | 1 | 1 | REGISTER  | 0 |        IMMEDIATE DATA         |
        -----------------------------------------------------------------

        "REGISTER" is one of the 8 data registers. 

88.5. Result

        X - Not affected.
        N - Set if the result is negative. Cleared otherwise.
        Z - Set if the result is zero. Cleared otherwise.
        V - Always cleared.
        C - Always cleared.

88.6. See also

MOVE MOVEA LEA