本文整理汇总了C++中sc_trace函数的典型用法代码示例。如果您正苦于以下问题:C++ sc_trace函数的具体用法?C++ sc_trace怎么用?C++ sc_trace使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sc_trace函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: sc_main
int sc_main(int ac, char *av[])
{
sc_trace_file *tf;
sc_signal<bool> clock;
sc_signal<sc_bv<4> > bv;
sc_signal<sc_lv<4> > sv;
proc1 P1("P1", clock, bv, sv);
tf = sc_create_wif_trace_file("test07");
sc_trace(tf, P1.obj1, "Signed");
sc_trace(tf, P1.obj2, "Unsigned");
sc_trace(tf, bv, "BV");
sc_trace(tf, sv, "SV");
clock.write(0);
sc_start(0, SC_NS);
for (int i = 0; i< 10; i++) {
clock.write(1);
sc_start(10, SC_NS);
clock.write(0);
sc_start(10, SC_NS);
}
sc_close_wif_trace_file( tf );
return 0;
}
示例2: sc_main
int sc_main(int argc, char *argv[]) //(int ac, char** av)
{
sc_signal<sc_uint<1> > int1 ;
sc_signal<sc_uint<1> > int2 ;
sc_clock clk("clk", 20, SC_NS, 0.5);
// instanciate Processes
flop FLOP("flip_flop");
FLOP.clk(clk) ;
FLOP.in(int1) ;
FLOP.out(int2) ;
sc_trace_file * tf = sc_create_wif_trace_file("test");
sc_trace( tf, clk, "clk");
sc_trace( tf, int1, "int1");
sc_trace( tf, int2, "int2");
/*
sc_trace_file * tf2 = sc_create_vcd_trace_file("dump_vcd");
sc_trace( tf2, clk, "clk");
sc_trace( tf2, int1, "int1");
sc_trace( tf2, int2, "int2");
*/
sc_start(1000, SC_NS);
sc_close_wif_trace_file( tf );
return 0;
}
示例3: sc_main
int sc_main(int argc, char* argv[]) {
sc_signal<bool> input_1, input_2, output;
sc_clock test_clock("TestClock", 10, SC_NS, 0.5);
sc_trace_file *trace_file;
stimulus stimulus_1("Stimulus");
stimulus_1.input_1(input_1);
stimulus_1.input_2(input_2);
stimulus_1.clock(test_clock);
monitor monitor_1("Monitor");
monitor_1.input_1(input_1);
monitor_1.input_2(input_2);
monitor_1.output(output);
monitor_1.clock(test_clock);
xor_ xor_1("Xor");
xor_1.input_1(input_1);
xor_1.input_2(input_2);
xor_1.output(output);
trace_file = sc_create_vcd_trace_file("wave");
sc_trace(trace_file, test_clock, "Clock");
sc_trace(trace_file, input_1, "Input_1");
sc_trace(trace_file, input_2, "Input_2");
sc_trace(trace_file, output, "Output");
sc_start();
sc_close_vcd_trace_file(trace_file);
return 0;
}
示例4: sc_main
int sc_main(int argc, char* argv[])
{
sc_signal <unsigned int> sinalA, sinalB, sinalC;
sc_clock clock(" Clock", 10, SC_NS,0.5, 1, SC_NS);
Estimulos est("Estimulos");
Maior m("Maior");
est.A(sinalA);
est.B(sinalB);
est.Clk(clock);
m.A(sinalA);
m.B(sinalB);
m.C(sinalC);
sc_trace_file* Tf;
Tf = sc_create_vcd_trace_file("traces");
sc_trace (Tf,sinalA,"A");
sc_trace (Tf,sinalB,"B");
sc_trace (Tf,sinalC,"C");
sc_trace (Tf,clock,"Clk");
sc_start();
sc_close_vcd_trace_file(Tf);
return 0;
}
示例5: sc_main
int sc_main(int argc, char* argv[]) {
sc_signal<int> out_free ;
sc_signal<int> out_available ;
sc_signal<bool> out_full ;
sc_signal<bool> out_empty ;
test_fifo u_test_fifo( "u_test_fifo" ) ;
u_test_fifo.out_free ( out_free );
u_test_fifo.out_available( out_available );
u_test_fifo.out_full ( out_full );
u_test_fifo.out_empty ( out_empty );
sc_trace_file * vcd_file;
vcd_file = sc_create_vcd_trace_file( "test_fifo" );
sc_trace( vcd_file , out_free , "out_free" );
sc_trace( vcd_file , out_available , "out_available" );
sc_trace( vcd_file , out_full , "out_full" );
sc_trace( vcd_file , out_empty , "out_empty" );
sc_start(1000, SC_NS);
sc_close_vcd_trace_file( vcd_file );
return 0;
}
示例6: sc_main
int sc_main(int ac, char *av[])
{
sc_trace_file *tf;
sc_signal<bool> clock;
sc_signal<int> I;
sc_signal<char> C;
sc_signal<float> F;
sc_signal<sc_logic> L;
proc1 P1("P1", clock, I, C, F, L);
tf = sc_create_wif_trace_file("test08");
sc_trace(tf, clock, "Clock");
sc_trace(tf, I, "Int", 32);
sc_trace(tf, C, "Char", 8);
sc_trace(tf, F, "Float");
sc_trace(tf, L, "Logic");
clock.write(0);
sc_start(0, SC_NS);
for (int i = 0; i< 10; i++) {
clock.write(1);
sc_start(10, SC_NS);
clock.write(0);
sc_start(10, SC_NS);
}
sc_close_wif_trace_file( tf );
return 0;
}
示例7: sc_main
int sc_main(int argc, char* argv[]) {
sc_signal<bool> t_a, t_b, t_cin, t_sum, t_cout;
full_adder f1 ("FullAdderWithHalfAdder");
// Positional association:
f1 << t_a << t_b << t_cin << t_sum << t_cout;
driver d1 ("GenerateWaveforms");
d1 << t_a << t_b << t_cin;
monitor mo1 ("MonitorWaveforms");
mo1 << t_a << t_b << t_cin << t_sum << t_cout;
if (! mo1.outfile) {
cerr << "ERROR: Unable to open output file," << " fa_with_ha.out!\n";
return (-2);
}
sc_trace_file *tf = sc_create_vcd_trace_file ("full_adder");
sc_trace(tf, t_a,"A");
sc_trace(tf, t_b, "B");
sc_trace(tf, t_cin, "CarryIn");
sc_trace(tf, t_sum, "Sum");
sc_trace(tf, t_cout, "CarryOut");
sc_start(100, SC_NS);
// mo1.outfile.close();
// d1.infile.close();
sc_close_vcd_trace_file (tf);
return(0);
}
示例8: sc_main
int sc_main(int argc, char* argv[])
{
// Turn off warnings due to deprecated features
sc_core::sc_report_handler::set_actions("/IEEE_Std_1666/deprecated",
sc_core::SC_DO_NOTHING);
// Declare the channel to communicate between or_gate and its TB
sc_buffer<sc_logic> A, B, C;
// MODULE INST USING POINTERS
or_gate *OR;
OR = new or_gate("OR");
OR->a(A);// NAME BINDING
OR->b(B);
OR->c(C);
TB_or_gate TB_OR("TB_OR");
TB_OR.a(A); // NAME BINDING
TB_OR.b(B);
TB_OR.c(C);
//TB_OR(A, B, C); // POSITIONAL BINDING
#ifdef WAVE
// Generate waveform
sc_trace_file *wf = sc_create_vcd_trace_file("OR_GATE");
sc_trace(wf, OR->a, "a");
sc_trace(wf, OR->b, "b");
sc_trace(wf, OR->c, "c");
#endif
sc_start(20, SC_NS);
//sc_close_vcd_trace_file(wf);
return(0);
}
示例9: sc_main
int sc_main(int argc, char* argv[])
{
sc_signal<bool> din, dout;
sc_clock clk("clk",10,SC_NS,0.5,0, SC_NS,false); // Create a clock signal
delta DUT("delta"); // Instantiate Device Under Test
DUT.din(din); // Connect ports
DUT.dout(dout);
DUT.clk(clk);
sc_trace_file *fp; // Create VCD file
fp=sc_create_vcd_trace_file("wave");// open(fp), create wave.vcd file
fp->set_time_unit(100, SC_PS); // set tracing resolution to ns
sc_trace(fp,clk,"clk"); // Add signals to trace file
sc_trace(fp,DUT.q_s,"q_s");
sc_trace(fp,din,"din");
sc_trace(fp,dout,"dout");
sc_start(31, SC_NS); // Run simulation
din=true;
sc_start(31, SC_NS); // Run simulation
din=false;
sc_start(31, SC_NS); // Run simulation
sc_close_vcd_trace_file(fp); // close(fp)
return 0;
}
示例10: sc_main
int sc_main(int, char **)
{
sc_signal<bool> a, b, f;
sc_clock clk("Clk", 20, SC_NS); // 时钟周期为 20ns
// 分别定义模块 NAND 和 TB 的实例,并通过局部变量(如 a、b)将这两个实例连接起来
nand NAND("NAND");
NAND.A(a);
NAND.B(b);
NAND.F(f);
tb TB("TB");
TB.clk(clk);
TB.a(a);
TB.b(b);
TB.f(f);
// 生成仿真结果波形文件
sc_trace_file *tf = sc_create_vcd_trace_file("NAND");
sc_trace(tf, NAND.A, "A");
sc_trace(tf, NAND.B, "B");
sc_trace(tf, NAND.F, "F");
sc_trace(tf, TB.clk, "CLK");
sc_start(200, SC_NS); // 仿真时长 200ns
sc_close_vcd_trace_file(tf);
return 0;
}
示例11: sc_main
/**
* main
*/
int sc_main(int argc, char* argv[]) {
sc_set_time_resolution(1, SC_PS);
sc_clock clock("clk", 1, SC_NS);
// Shift reg is declared but not implemented
sc_signal<int> shiftreg_in;
sc_signal<int> shiftreg_out;
sc_trace_file *tf = sc_create_vcd_trace_file("wave");
sc_write_comment(tf, "Simulation of Shift Reg at Elaboration Time Resolution");
sc_trace(tf, clock, "Clock");
sc_trace(tf, shiftreg_in, "shiftreg_in");
sc_trace(tf, shiftreg_out, "shiftreg_out");
sc_start(30, SC_NS);
sc_close_vcd_trace_file(tf);
system("pause");
return 0;
}
示例12: sc_trace
void sc_trace(sc_trace_file *tf, const packet &p, const std::string &name)
{
sc_trace(tf, p.src_x, name+".src.x");
sc_trace(tf, p.src_y, name+".src.y");
sc_trace(tf, p.dest_x, name+".dest.x");
sc_trace(tf, p.dest_y, name+".dest.y");
sc_trace(tf, p.token, name+".token");
}
示例13: printf
//------------------------------------------------------------------------
void DAT_CNT::AddToTrace(sc_trace_file *tf)
{
char s[255];
printf("Module name: %s(%s)\n",name(),basename());
sprintf(s,"QI(0)_%s(%s)",name(),basename());
printf(" %s\n",s);
sc_trace(tf,QI[0],s);
sprintf(s,"QI(1)_%s(%s)",name(),basename());
printf(" %s\n",s);
sc_trace(tf,QI[1],s);
}
示例14: evt_start_event
/*
* evt_start_event()
*
* Change an event from WAITING to RUNNING.
*/
static void
evt_start_event (sc_gameref_t game, sc_int event)
{
const sc_filterref_t filter = gs_get_filter (game);
const sc_prop_setref_t bundle = gs_get_bundle (game);
sc_vartype_t vt_key[4];
sc_int time1, time2, obj1, obj1dest;
if (evt_trace)
sc_trace ("Event: starting event %ld\n", event);
/* If event is visible, print its start text. */
if (evt_can_see_event (game, event))
{
const sc_char *starttext;
/* Get and print start text. */
vt_key[0].string = "Events";
vt_key[1].integer = event;
vt_key[2].string = "StartText";
starttext = prop_get_string (bundle, "S<-sis", vt_key);
if (!sc_strempty (starttext))
{
pf_buffer_string (filter, starttext);
pf_buffer_character (filter, '\n');
}
/* Handle any associated resource. */
vt_key[2].string = "Res";
vt_key[3].integer = 0;
res_handle_resource (game, "sisi", vt_key);
}
/* Move event object to destination. */
vt_key[0].string = "Events";
vt_key[1].integer = event;
vt_key[2].string = "Obj1";
obj1 = prop_get_integer (bundle, "I<-sis", vt_key) - 1;
vt_key[2].string = "Obj1Dest";
obj1dest = prop_get_integer (bundle, "I<-sis", vt_key) - 1;
evt_move_object (game, obj1, obj1dest);
/* Set the event's state and time. */
gs_set_event_state (game, event, ES_RUNNING);
vt_key[2].string = "Time1";
time1 = prop_get_integer (bundle, "I<-sis", vt_key);
vt_key[2].string = "Time2";
time2 = prop_get_integer (bundle, "I<-sis", vt_key);
gs_set_event_time (game, event, sc_randomint (time1, time2));
if (evt_trace)
sc_trace ("Event: start event handling done, %ld\n", event);
}
示例15: sc_module
wave::wave(sc_module_name nm) //Constructor{{{
: sc_module(nm)
{
// Process registration
SC_THREAD(wave_thread);
// temperature initialization
tracefile = sc_create_vcd_trace_file("wave");
sc_trace(tracefile,oscillate,"osc");
sc_trace(tracefile,pressure,"pressure");
sc_trace(tracefile,temperature,"temperature");
sc_trace(tracefile,cylinder,"cylinder");
}//endconstructor }}}