|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
请教各位高手一个问题:
class my_driver extends ovm_driver;
`ovm_component_utils(my_driver)
function void new(.....)
...
endfunction: new
function void build();
....
endfunction: build
task run;
...
seq_item_port.get_next_item(...);
...
endtask
endclass: my_driver
class my_agent extends ovm_agent;
`ovm_component_utils(my_agent)
my_driver driver;
my_sequencer sequencer;
function void new(...)
...
endfunction: new
function void build();
super.build();
sequencer = my_sequencer::type_id::create("sequencer",this);
sequencer.build();
driver = my_driver::type_id::create("driver",this);
driver.build();
driver.seq_item_port.connect(sequencer.seq_item_export);
endfunction: build
endclass: my_agent
class my_env extends ovm_env;
`ovm_component_utils(my_env)
my_agent agent;
function void new(...)
...
endfunction: new
function void build();
super.build();
agent = my_agent::type_id::create("agent",this);
agent.build();
endfunction: build
task run;
....
endtask
endclass:my_env
仿真结果显示,my_env 中的run()函数跑起来了,但driver的run()没有跑起来,agent, driver,sequencer都已经创建了,就是driver的run跑不起来,一直等在那里进行不下去了,请各位高手指点原因啊,小弟在此谢过 |
|