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 jeetesh

  1. J

    Use generic in package: VHDL

    Thank you FvM and TrickyDicky. I know generic is not needed in my example, but I want to use this in some other designs. That was just an example, not design. TrickyDicky, I got it. Thanks for suggesting the instance of the package. I am using synplify and will check wether its gonna work there...
  2. J

    Use generic in package: VHDL

    Thank you FvM for your reply. We can design this like you did, but can we pass generic value to a package. If yes, then how? Considering this example.
  3. J

    Use generic in package: VHDL

    I have defined a generic in entity and I want to pass it to package. How to do this, without using component and others. I read somewhere that VHDL-2008 provides this feature. But I don't know how to use it? This is what I am trying to do (just an example): library ieee; use...
  4. J

    Verilog (-ams) 1364-2005 Simulator for analog designs (freeware)

    I was doing digital design with Verilog using Xilinx ISE. Now I want to start analog design using Verilog-ams. But I don't know which simulator (freeware) I should use, because Xilinx ISE is not supporting analog designs with Verilog ams. Please suggest me some simulators supported to verilog...
  5. J

    Verilog Error!! Please help me...

    It is again showing same error while viewing RTL Schematics.. @yourcheers
  6. J

    Verilog Error!! Please help me...

    I am getting an error at the udp instantiation line, while viewing RTL schematic, as: Unsupported Switch or User Defined Primitive but syntex is correct.... help me.. I am using xilinkx 14.1 primitive udp (d,a,b,c); output d; input a,b,c; table //a b c : d; 0 0 0 : 0; 0 0 1 : 1; 0...
  7. J

    Verilog Error!! Please help..

    thank u.... I was doing the same silly mistake....
  8. J

    Verilog Error!! Please help..

    I am getting an error as while designing an OAI22 in verilog(Xilinkx ISE 14.1) : ERROR:HDLCompilers:26 - "OAI21.v" line 26 expecting 'endmodule', found 'if' 21: module OAI21(a, b, cntrl, z); 22: input a, b, cntrl; 23: output z; 24: reg z; 25: always @(a or b or cntrl); 26: if (cntrl) 27: z = a &...
  9. J

    Verilog Error!!

    I am getting an error as: ERROR:HDLCompilers:26 - "OAI21.v" line 26 expecting 'endmodule', found 'if' 21: module OAI21(a, b, cntrl, z); 22: input a, b, cntrl; 23: output z; 24: reg z; 25: always @(a or b or cntrl); 26: if (cntrl) 27: z = a & b; 28: else 29: z = a | b; 30: endmodule...

Part and Inventory Search

Back
Top