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 xigu

  1. X

    [help]how to do the constraint for mux or gated clock in DC?

    gated clock mux I need synthesis a project with some gate or mux clock, for example: clk1 = clk1_en & clk_tx; //clk_en1 comes from other clock domain: clk_pci clk2 = state? clk_pci : clk_rx; how set constraint ? i try use set_case_analysis or create_generated_clock, but not set right. thanks
  2. X

    three quetions about prime power

    prime power tm synopsys debussy has a tool named: fsdb2vcd what is prime power?
  3. X

    lint tools for verilog

    free verilog lint tool LEC can also check some RTL rules. Maybe formal check and rule check will be integrated in future.
  4. X

    [help]what's the problem with my verilog program?

    verilog range bounds are not constants Verilog Assignment Rule: part select must constant, but bit select no limit in procedure assign: so can use another method, for(ii = 0;ii<8;ii=ii+1) if (ii == addr_i) for(jj = 0;jj<`w;jj=jj+1) cast[ii*`w+jj] = data_i[jj]; else for(jj = 0;jj<`w;jj=jj+1)...
  5. X

    [help]what's the problem with my verilog program?

    range must be bounded by constant expressions [...] u can try other ways use shift cast = data_i << addr_i * 'w; :it cant asign 'bZ or use mem reg [`w-1:0] cast [2:0] for () cast[index] = `w'bz; cast[addr_i] = data_i; :it not fit function
  6. X

    What are 100M-gate applications?

    100M is too large, not easy realized with normal design process now. more complex more timing more difficult, and more chip fail ...
  7. X

    Problem with function and timing in PAD

    pad, timing, function??? I think the important in RTL simulation is logic verification. Without the accurate model, the timing check is rough. Also PAD timing need be considered in synthesis constrain, i.e. input_delay... In final we check function and timing in simulation with SDF files...
  8. X

    How to extract signal to start or stop dumping

    fsdbdumpoff from modesim user manual --> A VCD file from source to output The following example shows the VHDL source, a set of simulator commands, and the resulting VCD output. VHDL source code The design is a simple shifter device represented by the following VHDL source code: library IEEE...
  9. X

    Is PowerCompile an independent tool ?

    PowerCompile clock gate control turn off power can save power, is right?

Part and Inventory Search

Back
Top