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 reachmagi

  1. R

    need verilog code for this circuit

    ok, i tried the following code..as you said, module asg1(clk, a, out1); input a, clk; output out1; reg q, out1; wire d; assign d = q; always@(posedge clk) begin q <= q; end always@(a or q) begin out1 = (q & a); end endmodule and these are the warnings i got while i tried doing the...
  2. R

    need verilog code for this circuit

    if i give q <= q; the d input is not used at all so the circuit cannot be deduced..
  3. R

    need verilog code for this circuit

    thats my assignment question... i tried a lot of ways and did realize to synthesize a code for that particular code is not possible... ---------- Post added at 15:08 ---------- Previous post was at 15:07 ---------- thanks a lot 'lostinxlation' ---------- Post added at 15:36 ----------...
  4. R

    need verilog code for this circuit

    is it possible to declare d input that way.. i mean, it was declared as input d; and wire d = q; is this possible? if i try to synthesize in xilinx i get the following error: Invalid use of input signal <d> as target.
  5. R

    need verilog code for this circuit

    lostinxlation , according to the circuit, a connection should exist between q output and d input. however i try, couldnt come up with a code that will synthesize. following is a code for the circuit, except that the connection btw q and d of FF is not coded.. can you please tell me how do i...
  6. R

    need verilog code for this circuit

    hi all, can anyone of you give a verilog code for this...
  7. R

    what will be the current through cmos inverter from vdd to ground

    what will be the value of current from vdd to vss(ground) in cmos inverter when pmos is on?

Part and Inventory Search

Back
Top