平台DM6437 、SEED仿真器
目标:在BIOS系统实现hello world程序
1、 新建hello_bios工程
2、创建tcf配置文件,并发“hello_bios”为文件名保存,如下图:
3、右键 à“Inset Log” à 命名为 “trace” 。保存后如下图:
4、向工程添加文件,”hello_bios.tcf” “hello_bioscfg.cmd” 。(添加这两个的时候,会有一些文件自动被添加)
5、添加自己的含有main的源文件 hello_bios.c
hello_bios.c内容如下:
#include
#include
#include "hello_bioscfg.h"
/* Objects created by the Configuration Tool */
extern LOG_Obj trace;
/* ======== main ======== */
Void main()
{
LOG_printf(&trace, "hello world!");
}
6、编译。
有出错信息:
[hello_bioscfg.s62] "C:CCStudio_v3.3C6000cgtoolsincl6x" -g -pdsw225 -fr"D:/all/SoftWare/hello_bios/Debug" -d"_DEBUG" -mv6400 -@"Debug.lkf" "hello_bioscfg.s62"
"hello_bioscfg.s62", ERROR! at line 365: [ ***** USER ERROR ***** - ]
Project build options do not match Global configuration settings.
Compiler options do not specify -mv64+, but configuration is for
C64x+
.emsg "Project build options do not match Global configuration settings. Compiler options do not specify -mv64+, but configuration is for C64x+"
"hello_bioscfg.s62", ERROR! at EOF: [E0300] The following symbols are
undefined:
解决办法:
Project à Build Option à target vertion à 把”c64xx” 换成 “c64x+”
7、花了很长时间的一步。下载到板子上运行,程序可以运行,但就是不到hello world 。
原来hello world 不是在 stdout 里显示的,而是在 DSP/BIOS à Message Log 里面打印的。
至此,伟大的hello world 终于出现了。
如图: