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 zubairbasha

  1. Z

    problem synthesizing for loop

    i am using CADENCE TOOlS nclaunch for verilog(rlt) code rc-compailer for synthesis in one of my code i am using for loop... shown below for(ST =1'b0;bk1>8'b0;ST =1'b0 ) begin bk1 = bk1>>1; if(bk1[0]==1) ST_ODD = ST_ODD+1; else ST_ODD = ST_ODD; end next_state = s2...
  2. Z

    need guidance

    today 11/8/2013, if everything was fine by this time you might uyou might have finshed masters will you plz gilde me in learning cadencetool to learn dvnced STA concepts
  3. Z

    D latch using wait statement

    use always @ (posedge clk ) in the above program it is not always @(clk)....................... i hope this may work
  4. Z

    D latch using wait statement

    this is the best way to write a verilog code for D-latch(as per my knowledge) module d_latck(clk,d,q); input wire clk,d; output reg q; always @ (clk) begin if(clk) q=d; else d=d; end endmodule i hope u migt have understood something what i was trying to...
  5. Z

    D latch using wait statement

    hi..., wait statement is not synthesizable even if you can stimulate it in software point of view u can not infer wait statement to any of the latch or flip-flop so i think using wait is not advisable or else you might face problem while synthesizing it
  6. Z

    problems in semi-custom design

    hello every1, i am a begineer learning cadence tool, i am 1/4th way down the journey , i have learnt fullcustom and semi-custom design at basic level .... can any one tell me how to abtain a schemetic in virtuoso for a gate-level-netlist generated after synthesis (meeting all constraints)...
  7. Z

    I Need Cadence Software full cracked version

    hello krithik, i think cadence cracked version is not available anywhere,.. i hav googled a lot for it but MODELSIM is the eqivalent one u can use it............ it is helpful to you if you are looking to learn verilog coding

Part and Inventory Search

Back
Top