URL
https://opencores.org/ocsvn/t6507lp/t6507lp/trunk
[/] [t6507lp/] [trunk/] [fv/] [alu_agent.e] - Diff between revs 125 and 129
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 125 |
Rev 129 |
Line 4... |
Line 4... |
|
|
unit alu_agent_u {
|
unit alu_agent_u {
|
smp: alu_signal_map_u is instance;
|
smp: alu_signal_map_u is instance;
|
mon: alu_mon_u is instance;
|
mon: alu_mon_u is instance;
|
bfm: alu_bfm_u is instance;
|
bfm: alu_bfm_u is instance;
|
sync: alu_sync_u is instance;
|
|
|
|
event main_clk;
|
event main_clk;
|
|
|
keep bfm.rst == smp.rst;
|
keep bfm.agent == me;
|
|
keep bfm.reset_n == smp.reset_n;
|
keep bfm.alu_enable == smp.alu_enable;
|
keep bfm.alu_enable == smp.alu_enable;
|
keep bfm.alu_opcode == smp.alu_opcode;
|
keep bfm.alu_opcode == smp.alu_opcode;
|
//keep bfm.alu_a == smp.alu_a;
|
keep bfm.alu_a == smp.alu_a;
|
|
|
keep mon.alu_result == smp.alu_result;
|
keep mon.alu_result == smp.alu_result;
|
keep mon.alu_status == smp.alu_status;
|
keep mon.alu_status == smp.alu_status;
|
keep mon.alu_x == smp.alu_x;
|
keep mon.alu_x == smp.alu_x;
|
keep mon.alu_y == smp.alu_y;
|
keep mon.alu_y == smp.alu_y;
|
|
|
help() @ main_clk is {
|
//on main_clk {
|
out ("Hello World");
|
//while TRUE {
|
};
|
//counter = counter +1;
|
|
|
|
//if (counter == 37) {
|
|
//dut_error();
|
|
//}
|
|
//else {
|
|
//out("\n",counter);
|
|
//}
|
|
//}
|
|
//};
|
|
|
run() is also {
|
run() is also {
|
start help();
|
//start help();
|
|
};
|
};
|
};
|
|
|
|
extend alu_bfm_u {
|
|
agent: alu_agent_u;
|
|
event main_clk is only @agent.main_clk;
|
};
|
};
|
|
|
|
|
'>
|
'>
|
|
|
No newline at end of file
|
No newline at end of file
|
© copyright 1999-2025
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.