Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by srish

  1. S

    Abstract class in system verilog

    Hi Dave, I referred to **broken link removed** thread..... may be my understanding is not enough but let me ask you one of my basic doubt ........see you have virtual/abstract class UART_BFM in UART_pkg and one virtual method in it setNbits().....and then in its child class U_TX you define...
  2. S

    sequence in system verilog

    Re: Sequence in system verilog ## is a notation used for timing delays............ ##1 means after 1 clock cycle ..............regarding sequences you make sequences and then use them one by one with some conditions in your assertions(via property)......in assertions we are verifying a sequence...
  3. S

    Help with $readmemb in SystemVerilog

    your question is not clear ............anyways you want to basically develop a testbench and drive your module at every posedge so you basically has a DUT(design module) then create a interface for connecting your TB to your DUT and then make generator class or module in your testbench and then...
  4. S

    Class in system verilog

    in code1 print() task of base class will run or execute ..............in code2 print() task of class derived will execute.......you can refer to www.testbench.in and refer to inheritance section of oops
  5. S

    Abstract class in system verilog

    Why we need Abstract class in our Testbench.........what is advantage of using it.......normally in its child class we declare the functions or tasks with full functionality then why to create a abstract class???
  6. S

    function new(string name=”",vmm_object parent=null)

    In testbench we always use new constructor in classes as: function new(string name, vmm_object parent=null); super.new (parent,name); endfunction Be it VMM,UVM or OVM it is used everywhere ........could anyone explain this line by line and why we need to use this????
  7. S

    Looking for job(2 + experience as Design & Verification Engineer)

    I am 2 + experience as a front-end Design & verification Engineer. worked in soc level and ip level verification both(various ip like CRC,Timer etc., security protocols AES, audio codec g722 etc). I am looking for a job.............but now a days recruiters are asking for special expertise like...
  8. S

    clocking block in test bench

    hey thank you ...i read out the paper i.e. how approach to verification enhanced from traditional approach regarding the interconnection between design and test bench..i will try and follow ur advice ......currently i am doing designing in a project .......vl try to co-relate the things together...
  9. S

    clocking block in test bench

    why we define clocking block normally in interface in a test bench???? is there any significance of this?? and one more thing that if we do not define any clocking block in a test bench then also it works fine how???? is there any default input skews and output sync time ???
  10. S

    Systemverilog fork-join_none and forever block

    My code goes like this: fork begin .... forever begin process 1; if (some condition) break; end ..... end join_none My doubt is if that "some condition" is met then will break will help to come out of forever block and fork-join_none block...
  11. S

    Question regarding system verilog

    Thanku vrymuch ........it really worked out for me ..................but there z one question that if we can give seed to std::randomize(variable) ? and if yes then how can we pass seed value for randomization into this ?
  12. S

    [SOLVED] Question regarding system verilog

    oh i find out that the method described above is absolutely right .........no problem with that method of opening and writing the file.
  13. S

    [SOLVED] Question regarding system verilog

    how to create and write a radom variable in that particular created file? i use file which is integer type then file=$fopen(path where i want file to be created) then $fwrite(file , random variable) then $fclose(file) but it is not created and working plz HELP
  14. S

    Question regarding system verilog

    i need to write a task which generates random binary data and write it in to a file? can anyone help me because i can not use randomize() method and rand longint because they can not be used without class declaration and my task is not under any class? ---------- Post added at 18:14 ----------...
  15. S

    Audio codec g722 design

    can anyone help me with how audio signals are being converted into raw files ? or how raw files are generated from audio signals?

Part and Inventory Search

Back
Top