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 sandilya.mrin

  1. S

    SISO design using behaviourial modeling in verilog

    I think to reflect SISO operation... module siso( input clk,reset,in, output reg out ); reg [3:0]temp; always @ (posedge clk) begin if (reset) begin out <= 0; temp <= 0; //in <= 1'b1; //just for testing make it "1"... end else begin temp <= {temp[2:0]...

Part and Inventory Search

Back
Top