Code Browser Pages:
Files in
vmm1.2_example.tar



dummy_rtl.v
ReadMe.txt
vmm_cfg.sv
vmm_cov.sv
vmm_drv.sv
vmm_env.sv
vmm_gen.sv
vmm_interface.sv
vmm_packet.sv
vmm_rcv.sv
Current file: vmm_sbd.sv
vmm_scn.sv
vmm_top.sv



///////////////////////////////////////
///////////////////////////////////////
////                               ////
////        VMM 1.2 example        ////
////                               ////
////     For more vmm examples     ////
////     visit www.testbench.in    ////
////                               ////
///////////////////////////////////////
///////////////////////////////////////


//-----------------------------------------------------------------------------
// Dummy rtl Scoreboard Class
//-----------------------------------------------------------------------------

class my_sb extends vmm_sb_ds;
  function new(string name);
    super.new("Dummy RTL Scoreboard");
    this.define_stream(0, "Driver", INPUT);
    this.define_stream(1, "Monitor", EXPECT);
  endfunction: new
endclass: my_sb

//-----------------------------------------------------------------------------
// end of file 
//-----------------------------------------------------------------------------