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 slayunk23

  1. S

    How to write 8 to 3 priority encoder and T-flip flop using verilog task coding????

    module priencoder1_8to3 ( binary_out , encoder_in ,enable ); output [2:0] binary_out ; input enable ; input [7:0] encoder_in ; reg [2:0] binary_out ; always @ (enable or encoder_in) if (enable == 0) begin if (encoder_in[7] == 0) binary_out = 0; else if (encoder_in[6] == 0)...

Part and Inventory Search

Back
Top