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 smeschke

  1. S

    How to write a rising-edge D flip flop program using a Verilog

    Re: how to write a rising-edge D flip flop program using a Verilog I found it - I had accidentally added something from a comment block in as code and that is what the issue was. I removed it and then it complied successfully. always block
  2. S

    How to write a rising-edge D flip flop program using a Verilog

    Re: how to write a rising-edge D flip flop program using a Verilog Oops, forgot to post the output: Done
  3. S

    How to write a rising-edge D flip flop program using a Verilog

    here is what I have but it keeps failing: module DFF(clock,D,Q,Qbar); input clock, D; output reg Q; always block output Qbar; assign Qbar = ~ Q; always @(posedge clock) Q = D; endmodule Any ideas?

Part and Inventory Search

Back
Top