此帖出自嵌入式系统论坛
最新回复
现在的问题更奇怪了,为什么这样声明,定义居然能正常运行?
我把自己的代码贴出来:
clkGen.h
//空文件
clkGen.c
#include "acc_user.h"
#include "veriuser.h"
#include
#include "clkGen.h"
// Define the ON and OFF time of clock
#define PERIOD 5
extern int clkGen();
extern int clkInit();
extern int clkReactive (int data, int reason, int paramvc);
// Data structure
struct clkData {
int clk;
int clkCnt;
};
struct clkData *data;
int count = 0;
// Main routine which toggles the clock
int clkGen()
{
acc_initialize();
// Get the stored workarea
//struct clkData *data = ( struct clkData * )tf_igetworkarea(tf_getinstance());
if (data->clkCnt == PERIOD)
{
data->clk = (data->clk == 0) ? 1 : 0;
data->clkCnt = 0;
io_printf("%d Current clk = %d\n",tf_gettime(), data->clk);
}
else
{
data->clkCnt ++;
io_printf("%d Current clk = %d\n",tf_gettime(), data->clk);
}
// Drive the clock signal in HDL
tf_putp (1, data->clk);
acc_close();
return 0;
}
// checktf() routine
// This function inits the objects and also stores the object in workarea
//extern "C"
int clkInit()
{
acc_initialize();
data = ( struct clkData * )malloc( sizeof( struct clkData ) );
data->clkCnt = 0;
data->clk = 0;
tf_setworkarea(data);
acc_close();
return 0;
}
// misctf() routine
// This routine is called after 1 tick
int clkReactive (int data, int reason, int paramvc)
{
acc_initialize();
// if callback reason is reactive, then call clkGen function
if (reason == reason_reactivate)
{
clkGen();
}
// Set the callback delay to 1 tick
tf_setdelay(1);
acc_close();
return 0;
}
s_tfcell veriusertfs[] = {
{usertask, 0, clkInit, 0, clkGen, clkReactive, "$clkGen"},
{0}
};
//cl -c -I C:/Modeltech_6.3f/include clkGen.c
//link -dll -export:veriusertfs clkGen.obj C:/Modeltech_6.3f/win32/mtipli.lib /out:clkGen.dll
//vsim -c -pli D:/modelsimPROJ/counterv4/clkGen.dll clkGen_tb
clkGen.v
module clkGen_tb(clk);
output clk;
reg clk;
initial
begin
$clkGen(clk);
end
always @(posedge clk)
begin
$display("hello world !");
end
endmodule
用命令行编译没问题,也能运行,但是用modelsim提供的编译按钮编译不通过
我想问,clkReactive 明明是不符合veriuser.h中函数指针要求的,问什么能编译通过呢,还能运行,求高手解答~~!
详情
回复
发表于 2009-5-18 10:35
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
此帖出自嵌入式系统论坛
| ||
|
||
EEWorld Datasheet 技术支持
EEWorld订阅号
EEWorld服务号
汽车开发圈
机器人开发圈