andrewF
andrewF

Reputation: 54

analyzing MSP430 code

so if had the following statements in assembly for the msp430 with the rf2500 chip

0x0000c06a <+44>: 3f 40 22 00 mov  #34, r15; 0x0022

and

0x0000c07c <+62>: 3e 53      add #-1, r14; r3 As==11

how many bytes does each instruction occupy?

Upvotes: 1

Views: 91

Answers (1)

CL.
CL.

Reputation: 180060

The values of the six bytes are shown after the address:

                   ___________
0x0000c06a <+44>:  3f 40 22 00  mov  #34, r15; 0x0022
0x0000c07c <+62>:  3e 53        add  #-1, r14; r3 As==11
                   ^^^^^^^^^^^

Upvotes: 2

Related Questions