Readme file for ICC430 2.20A-P030708

Updated: 2003-07-08 [ILOF]
Archived: $Revision: 1.5 $

Contents

Important information

New features

Known problems

Program corrections

2.20A-P030708 2003-07-08

2.20A 2003-05-23

User guide corrections

The corrections below refer to the PDF versions of the user guide MSP430 C Compiler Programming Guide, C430-2. The information in the PDF files is, in the event of any differences, more accurate than the printed user guides and the online help files.

Miscellaneous

Release history

2.10A-3 2003-03-20

2.10A 2003-02-28

2.09B 2003-01-31 (beta version)

1.26B 2002-10-11

1.26A 2002-03-11

1.25A 2001-11-09

        1)  
          while(1)
          {
          }
          Old assembler code:          New code:
          ?1: MOV #1h,Ry               ?1: JMP ?1:   
          CMP #0,Ry                     
          JNE ?1:

        2)
          while(1)
          {
            statement;
          }
          Old assembler code:          New code:
          ?1: MOV #1h,Ry               ?1: statement ...
          CMP #0,Ry                    JMP ?1:    
          JEQ ?2:
          statement ...
          JMP ?1:
          ?2:

        3)
          More effective code, when writing as follows: 
          i /= 2, i /= 4, i /= 8, i /= 16, i /= 32, i /= 64 and i /= 128.
          i /= 128 only if the speed optimization flag is set.

1.24A 2001-04-06

1.23A 2000-10-16

1.22E 2000-06-26

1.22A 1999-11-25

1.20A 1999-02-19

1.11A 1997-09-11

1.10C 1997-02-28

1.10B 1997-01-15


Copyright 1996-2003 IAR Systems. All rights reserved.
Hosted by www.Geocities.ws

1