使用vxsim(一)

  • 新建download工程

22

  • 选择toolchain

23

这里选SIMNTgnu是为了在vxsim中能下载编译的.o文件

如果是为了下载到visualbox或者vmware中的vxworks,则toolchain选pcPentiumgnu。

  • vx图标

25

  • 选标准的

 24

代码:

fun1.h

#include <stdio.h>
#ifndef FUN_1
#define FUN_1
void fun1();
#endif

fun2.h

#include <stdio.h>
#ifndef FUN_2
#define FUN_2
void fun2();
#endif

fun1.c

#include "fun1.h"
void fun1(){
printf("fun1()\n");

}

fun2.c

#include "fun2.h"
#include "fun1.h"
void fun2(){
printf("fun2()\n");
fun1();
}

编译后先后下载fun1.o,fun2.o

调用fun2

26

调用sp(fun2)

 

27

posted @ 2013-10-27 13:42  小菜鸟_yang  阅读(822)  评论(0编辑  收藏  举报