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 SURAJ7

  1. S

    Verilog code for counting pulses in 555timer

    module pwm(clock,switches,pwm); parameter sd = 195;//step delay in pulse input clock; input [7:0]switches; output pwm; reg pwm; reg [15:0] counter=0; always@(posedge clock) begin counter=counter+1; if(counter<=switches*sd) pwm=1; else pwm=0; if(counter>=50000) counter=0; end; endmodule
  2. S

    Verilog code for counting pulses in 555timer

    hey everybody, I wish to write a verilog code for counting pulses from 555timer in fpga...can anybody help

Part and Inventory Search

Back
Top