vlsibank

Log in or Sign up.
Main EDA Embedded Systems ASIC FPGA VHDL Verilog CMOS Semiconductors DSP Mixed Signal Architecture Miscellaneous

<-- Previous Next -- > TOPIC: verilog code for serial to parallel converter
Posted by: rajashekar.m     2/8/2006 3:34:14 AM     Category: Verilog
Questions posted: 1         Comments Posted: 0
i want code for serial to parallel converter

Posted by: abhilashvlsi     8/9/2010 8:55:57 AM
Comments Posted:5       

its simple....go through this...


       module serial_to_parallel ( parallel_out, serial_in, enable, clock, reset);
       parameter SIZE=4;
       output [SIZE-1] parallel_out;
       input serial_in;
       input enable;
       input clock;
       input reset;
       reg [SIZE-1] parallel_out;
       always @(posedge clock or negedge reset) begin
        if (~reset)
          parallel_out <= 0;
        else if (enable)
          parallel_out <= {serial_in, parallel_out[SIZE-1:1]};
 
        end
 endmodule


Posted by: gundar     7/28/2010 2:16:09 PM
Comments Posted:2       

i need for verilog code for serial to parallel converter


Posted by: gundar     7/28/2010 2:12:46 PM
Comments Posted:2       

i need verlog code for serial to parallel converter


Posted by: muruku     4/8/2010 4:31:09 AM
Comments Posted:29       

http://digitalelectronics.blogspot.com/


Posted by: wparry     4/7/2010 12:43:40 PM
Comments Posted:1       

Hi vlsi warrior,

would you also send me the serial to parallel converter code in Verilog. Thanks!
My Email: denny@quasarfs.com


Posted by: siri.smile     3/18/2010 11:50:21 PM
Comments Posted:1       

hi frnds, i need vhdl USB code.... firstly,serial to parallel conversion or shift register code...can u mail me plz vanka_shireesha@yahoo.co.in


Posted by: bharath_kt     1/21/2009 4:53:30 PM
Comments Posted:77       Questions Posted:1

I found a very good link that has the code for simple serial-to-parallel conversion. You can change that code to suit your requirement.

http://www.knowledgetreasure.com/karthiazhagu/weblog/356.html

Hope it will give you some ideas of writing code. Don't do copy-paste. Try to understand. Verilog is always fun.


Posted by: balawilldo     1/20/2009 4:18:59 AM
Comments Posted:1       

HELLO I NEED CODES USING VERILOG HDL SO PLEASE SEND ME URGENTLY


Posted by: vigneshj8     1/9/2009 2:53:00 AM
Comments Posted:1       

i want the verilog code for 64 point radix 4 fft/ifft.


Posted by: amitkumar_ee     9/1/2006 3:10:52 PM
Comments Posted:4       

the above code for serial to parallel converter will working very fine after making a small change in line 11. instead of using blocking statement if we use nonblocking i.e  dout<=3'b000;
i synthesized this code (for 33 bit instead of 4 bit)using cadence RC tool and then performed post synthesis simulation using NC launch and i found that this code is giving the best post synthesis simulation result among all the code for serial to parallel converters available with me.


Posted by: vlsi_warrior     2/9/2006 5:58:08 AM
Comments Posted:9       Questions Posted:3

hey man hv u tried it ??
try it atleast once u will get the answer.....
ok i will send u the code but try atlest once ..




You have to be logged in to be able to post a comment. To login click here. First time? Sign up. It just takes a few minutes to sign up.

Login to access the site

  Username:
  Password:
   Signup Forgot Password?    

Users with most replies

   User
 No. of Replies
100
86
77
76
70
66
61
57
54