Destreation
Destreation

Reputation: 115

MSP430 Syntax: Assembly & C Questions

I am coding an msp430 using the code composer, my questions are below:

--What specific assembly language does it use?

(I am looking for a guide to learn the syntax but cannot find the name of the language.)

--What is a list of addressable components on an embedded system called?

(I see them address components and im not sure where the names come from.)

Upvotes: 0

Views: 1240

Answers (1)

CL.
CL.

Reputation: 180060

The assembly language for the MSP430 is called MSP430 Assembly Language, and is documented in the MSP430 Assembly Language Tools User's Guide.

Every chip has its own combination of peripheral modules. There is a family user's guide that describes in detail all modules that chips in a family could have, and a device-specific datasheet that describes which modules a particular chip actually has. For example, the MSP430G2553 web page links to the MSP430x2xx Family User's Guide and the MSP430G2553 datasheet. Each chip has its own header file (e.g., <msp430g2553.h>) that is automatically selected by <msp430.h> based on the compiler settings.

Upvotes: 1

Related Questions