Open the "project" in the BSPSim directory by double-clicking on the
file "BSPSim.mdp".
This project contains all the files, but no source file containing a
function called "bsp_main" which is necessary. You must therefore have a file
containing a function called "bsp_main" that is your BSP program. It
may look like
#include
void bsp_main (int argc, char **argv)
{ // Your BSP program here
...
}
but several examples are also provided. One is the file "helloworld.cpp"
which is found in the subdirectory "TestCode/HelloWorld".