MSP430F2618: 编译cannot open source file "msp430.h"

Part Number: MSP430F2618

我在新的电脑安装了IAR

我新建了一个工程。

编译的时候 显示 Fatal Error[Pe1696]: cannot open source file "msp430.h"

源代码如下:

#include <msp430.h>

int main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
P1DIR |= 0x01; // Set P1.0 to output direction

for (;;)
{
volatile unsigned int i;

P1OUT ^= 0x01; // Toggle P1.0 using exclusive-OR

i = 50000; // Delay
do (i--);
while (i != 0);
}
}

请问,如何解决?