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 littlebu

  1. L

    INSICIVE14.1 cannot generate delay on assignment

    i have found root cause is SEQ_UDP_DELAY option, simulation is OK after removing this option.!!
  2. L

    INSICIVE14.1 cannot generate delay on assignment

    I am running OVM env together with some behavior model descripted in verilog. But seems it is never working.... assign #0.2ns A = B; But below is OK (changed to always) always @ * A <= #0.2ns B; Since another env without OVM is OK, so i doubt it is related with OVM or some delay mode setting.
  3. L

    Can multiple interfaces be instansed together in system verilog?

    Thanks! ! And more questions about interface: 1. Can such 2d interface array as a port? 2. How can I use modport in that case if Q1 is OK? 3. for example: module axi_slave( my_axi_interface axi_master_interface[nr_of_axi_ports-1:0]; clk, rstn ); generate .*...
  4. L

    Can multiple interfaces be instansed together in system verilog?

    interface_instantiation ::= interface_identifier [ parameter_value_assignment ] module_instance { , module_instance } ; above is interface instantiation syntax, seems multi interfaces (like an interface array) cannot be clarified together, is that ture? what im looking for is: axi_interface...
  5. L

    How to calculate the depth of FIFO in this case?

    I am not trying to answer your question, and just want to discuss why you ignore overflow? Is any requirement of stream stability? For example, it is acceptable FIFO overflow every 3s (!?). Is that true? Otherwise, it is not make sense to me that in/out ports of FIFO have different data rate..
  6. L

    [SOLVED] Power up and Initialization sequence for a design.

    This is very simple timer logic, power up 500us, reset 200us, and the cke.... If you want to make generic/programmable logic to control such process, you have to write several timers/counter to do it.
  7. L

    How to detect forced signal in VCS simulation?

    hi yhn I think use some like 'grep' or 'sed' tools for find 'force' keyword in ur design will be more easy. Btw: if somebody find method to detect forced signal in VCS, please also tell me.
  8. L

    Query concerning multicycle paths

    Hi Jean I think you can't get expected result. firstly, we need understand what is multicycles: is cant finish in one clock cycle. ForExample: 6cycles. that's mean you need wait 6-cycles to capture comb result use regB. But before you get this result, you need steady input of comb logic. i.e...
  9. L

    question about FIFO depth

    OK, It's Lucky So how do you want to handle overrun case? Tell upstream for waiting moment? maybe we can talk detail by email. buqingjun(at)gmail
  10. L

    question about FIFO depth

    yes, rhythmrain is right. If you only care about fifo work fine, 2-level fifo will be enough. but your fifo looks like design for HDMI. so it also depend on your application.
  11. L

    Formality: netlist vs. netlist (or RTL vs. netlist)

    rtl to netlist maybe formality comparing netlist is care name or UPcase and downcase. you can check the name change of DFF after do manipulation_tool.
  12. L

    problem of memory initialization

    hi sevid you can try initialize mem array to 'h0 before use $readmemh. just use "for" loop in initial block. hope it can give you some help
  13. L

    [SOLVED] zq calibration in DDR3

    ddr3 zq hi sree205 i think zq calibration in ddr3 is method for improve data & cmd signal integrality. copy from jedec: ZQ Calibration command is used to calibrate DRAM Ron & ODT values. DDR3 SDRAM needs longer time to calibrate output driver and on-die termination circuits at...
  14. L

    Why Combinational Outputs must not be taken directly?

    Hi hb_cancer i think the thats for improve timing: give more margin for external logic.
  15. L

    clock frequency is 50MHz+/-50ppm?

    clock frequency ppm hi feel_on_on i think if you meet case that different ppm in write clock and read clock, u have to consider worse case to calculate fifo depth. littlebu

Part and Inventory Search

Back
Top