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 hodagh

  1. H

    8 bit multiplier by verilog

    I didn't get your p.s. ! but I attached the resulting simulation
  2. H

    8 bit multiplier by verilog

    thanks for the point :) but still when I give the random numbers of x=4 and y=5 in active hdl the product will be A01B
  3. H

    hexadecimal counter verilog

    Hi, how can I write a verilog code for hexadecimal counter in a way that I program it on the board and change dip switch value ,so I can change the speed of counting?
  4. H

    8 bit multiplier by verilog

    I wanted to implement the normal way of multiplying with for loop I check multipliers bits : 1- if it's 1 add multiplicand to product and left shift the multiplicand 2-if it's 0 just shift
  5. H

    8 bit multiplier by verilog

    Hi everyone I wrote a behavioral verilog code for an unsigned 8*8 multiplier but when I simulate it, it doesn't show the right answer I would be happy if anybody can help ! module mult8(p,x,y); output [15:0]p; input [7:0]x,y; reg [15:0]p=0; reg [7:0]a; integer i; always @(x , y)...

Part and Inventory Search

Back
Top