How to use these files with Code Composer Studio:
-------------------------------------------------

1) First Setup the Code Composer Studio with the appropriate Target Board 
   type/name, I/O port, CPU type and GEL file.
2) Start the Code Composer Studio and create a new project by selecting
   Project-New from the menu and then select the location and name of the 
   project on the computer.
3) From the menu, select Project-Build Options-Target and then on the Compiler
   Tab choose the appropriate device from the Basic-Target Version.
4) From the menu choose Project-Add Files to Project and add the following files
	* vecs.asm
	* iom-2.c
        * link.cmd
   Also include the appropriate library files (*.lib) from C:\ti according to the 
   target C6000 device used.
5) In the uart.c file change the #define CHIP_6xxx 1 to the appropriate
   number according to the TMS320C6000 DSP used. For instance if the TMS320C6711
   is used, change the above line to #define CHIP_6711 1.
6) Build the project by selecting Project-Build from the menu.
7) Load the program by selecting File-Load Program from the menu.
8) Make appropriate wire connection for McBSP.  See the following picture:

  This is using an 25MHz external clock connecting to CLKS of
  both McBSP 0 and 1.  Both using CLKGDV of 2 (that's default).
  FSX1 is supplying frame sync to FSR1, FSR0, and FSX0.

  ___________________
  | Ext clock       |
  | (i.e. 25MHz CLK |
  | of C6711DSK)    |
  -------------------
      \         ___________________
       \        |2               1|
        \       |                 |
         \      |                 |
          \     |                 |
           \    |                 |
            \   |                 |
             +--|CLK0         FSX0|--------+
  +----------|--|DX0              |        |
  |    +-----|--|DR0          FSR0|---+-+  |
  |    |     |  |                 |   | |  |
  |    |     +--|CLK1         FSX1|---+ |  |
  |    |        |                 |     |  |
  |    +--------|DX1          FSR1|-----+--+
  +-------------|DR1              |
                |                 |
                |                 |
                |                 |
                |                 |
                |                 |
                |                 |
                |_________________|


8) Run the program.