<-- Previous Next -- > TOPIC: verilog code for serial to parallel converter

Questions posted: 1 Comments Posted: 0

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
Comments Posted:2
i need for verilog code for serial to parallel converter
Comments Posted:2
i need verlog code for serial to parallel converter
Comments Posted:29
http://digitalelectronics.blogspot.com/
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
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
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.
Comments Posted:1
HELLO I NEED CODES USING VERILOG HDL SO PLEASE SEND ME URGENTLY
Comments Posted:1
i want the verilog code for 64 point radix 4 fft/ifft.
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.
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.
Users with most replies
© vlsibank
Terms and Conditions · Site Feedback · SiteMap and Unsubscribe

Comments Posted:5