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 spandus

  1. S

    Error while simulating the system verilog code using questasim 10.5 version

    Hello Dave, please find my code below: //COUNTER DESIGN //D FLIPFLOP module dff(clk,reset,din,dout); input clk,reset,din; output dout; logic dout; always@(posedge clk,negedge reset) if(!reset) dout <= 0; else dout <= din; endmodule //COUNTER module ones_counter(clk,reset,data,count); input...
  2. S

    Error while simulating the system verilog code using questasim 10.5 version

    Hello All, can you sort out the mentioned error while simulating the system verilog code. Thanks Spandana

Part and Inventory Search

Back
Top