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 bwang0810

  1. B

    Map my module to a specific standard cell

    In the case of Synopsys Design Compiler as your synthesis tool: You can use "set_dont_use" command to filter out any std-cells you don't want to use during synthesis. For example "set_dont_use MAXLIB/INVX1" will bar synthesis tool from using INVX1 inverter from MAXLIB library. Knowing how to...
  2. B

    Synthesizing a signal as DFF and not DFFS

    How DC synthesize your sequential logic heavily depends on how your RTL is coded. The following will likely synthesize to a DFFR (DFF with active low reset) always@(posedge clk or negedge rst) if(~rst) q <= 1'b0; else q <= q_next; The following will likely synthesize to a DFFS (DFF...

Part and Inventory Search

Back
Top