Actions

User

Difference between revisions of "FraGag/MOVE"

From Sonic Retro

< User:FraGag
(New page: '''MOVE''': Move Data from Source to Destination == Operation == Source → Destination == Assembler Syntax == MOVE[.{bwl}] ''source'', ''destination'' * b: byte-sized operation (8 bits...)
 
(No difference)

Latest revision as of 00:26, 11 January 2008

MOVE: Move Data from Source to Destination

Operation

Source → Destination

Assembler Syntax

MOVE[.{bwl}] source, destination

  • b: byte-sized operation (8 bits are moved)
  • w: word-sized operation (16 bits are moved)
  • l: long-sized operation (32 bits are moved)

Description

Moves the data at the source to the destination location and sets the condition codes according to the data. The size of the operation may be specified as byte, word, or long.

Condition Codes

  • 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.