This is a template application.  This application is a simple
hello world application that can be used as the base of other
applications.  It does the following:

1.  The development board is initialized and the POST tests
    are executed.
2.  The ThreadX kernel is loaded.
3.  The device drivers are loaded.
4.  The TCP/IP stack is loaded.
5.  The function applicationStart() is called.

Code to start the user application should be placed in the function
applicationStart().  This function is called after the TCP/IP stack
has loaded and is ready to be used.  Generally, you will create and 
start whatever threads your application needs in this function.  

Three Multi build files are provided.  The build file project.bld
is used to control how application specific files are built.  All
updates to the build should be made to this file.  Project.bld is 
a subproject to the other build files debug.bld and rom.bld.  
Debug.bld is used to generate a debuggable version of the 
application.  Rom.bld is used to generate a ROM image of the 
application.

The following files are provided in this template.

appconf.h         sets application configuration settings
.\32b\debug.bld   used to build the big endian debug version of the
                  application.
debug.lx          linker command file for debug version of application
project.bld       contains application specific build settings
readme            this file
.\32b\rom.bld     used to build the big endian ROM image of application
rom.lx            linker command file for ROM image
.\32b\romzip.bld  used to build compressed application and code expansion,
                  ENABLE_FLASH_COMPRESSION is defined here
romzip.lx         linker command file for image compression/expansion
loader.c          provides application configurations to expansion code, used 
                  in romzip.bld
ramimagezip.bld   used to build compressed application
ramimagezip.lx    linker command file for compressed application image
root.c          contains applicationStart() function

In addition, the following files in the BSP directory are built
as part of this application.

bsproot.c       contains the code that starts up the TCP/IP stack
reset.s         contains the reset code
dialog.c          contains the configuration dialog code
decompress.c    contains routines to decompress the zipped code in the flash
                into RAM, and restart from RAM

The application build file links in the following libraries.

bsp.a           contains the BSP code
tcpip.a         contains the Net+Works TCP/IP stack
tx.a            contains the ThreadX kernel
na1.lib,na2.lib contains the NET+Works API libraries.
