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 peto

  1. P

    How to get the longest one's sequence in verilog?

    i did solved the problem but to find the length of the longest sequence of consecutive ones in 4 bit but i found it harder for 16 bit this is my verilog fo 4 bit module consecutiveones4bit( input [3:0] A, output [2:0] B ); assign B[2]=A[3]&A[2]&A[1]&A[0]; assign...
  2. P

    How to get the longest one's sequence in verilog?

    I have some problems with a question that ask me to get the number of one's in the longest one's sequence in a 16 bit input using a 5 bit number in verilog. For example (0111011111010101 = 00101 the answer is five duo to the sequence in the middle) (1111111111111111 = 100000) I would like to...

Part and Inventory Search

Back
Top