Assembly之instruction之Indirect Autoincrement Mode

Assembler Code       Content of ROM
MOV @R10+,0(R11)       MOV @R10+,0(R11)


Length:   One or two words


Operation:   

  Move the contents of the source address (contents of R10) to the destination address (contents of R11). Register R10 is incremented by 1 for a byte operation, or 2 for a word operation after the fetch; it points to the next address without any overhead. This is useful for table processing.


Comment:

   Valid only for source operand. The substitute for destination operand is 0(Rd) plus second instruction INCD Rd.


Example:   MOV @R10+,0(R11)

Assembly之instruction之Indirect Autoincrement Mode

你可能感兴趣的:(assembly)