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 dkvlsi

  1. D

    SISO design using behaviourial modeling in verilog

    thanks for the reply but i have checked with the same after swapping both the statement it is not giving the output.
  2. D

    SISO design using behaviourial modeling in verilog

    I have written verilog code for 4 bit Serial in serial out. module siso( input clk,reset,in, output reg [3:0] out); reg [3:0]temp; always @ (posedge clk) begin if (reset) begin out <= 0; temp <= 0; end else begin temp[0] <= in; temp <= temp << 1; out <=...

Part and Inventory Search

Back
Top