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 thverda

  1. T

    can u help me?

    -- Company: -- Engineer: -- -- Create Date: 12:01:27 02/22/2013 -- Design Name: -- Module Name: counter_shift - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created --...
  2. T

    i need help~!

    yep u r right. thank u
  3. T

    i need help~!

    ---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 10:58:05 02/15/2013 -- Design Name: -- Module Name: sevencounter - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description...
  4. T

    how do u make D-flip flop ?

    um. actually i want to make it. if u go to this site. u can see it. https://cafe.naver.com/veryveryverilog/8 but i dont know how i make it . ( verilog) input D; output Q; for example, Q=D; this is possible. but D=Q; this is not possible. huhuhuhuhu....
  5. T

    how do u make D-flip flop ?

    i made a simple D-flip flop. ========================= module dff(Q,C,CE,CLR,D); output Q; input C; input CE; input CLR; input D; reg Q; always@(posedge C) Q=D; endmodule ====================== but i wanna make a feedback D-flip flop.

Part and Inventory Search

Back
Top