- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I need to implement parallel-to-serial and serial-to-parallel blocks. Is there any megawizard/function that does this in the Quartus? and if not, how can I do it efficiently using verilog? Thank you.Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
you can use the LPM_SHIFTREG Megafunction or elementary HDL contsructs like thisalways @(posedge clk)
begin
sr <= { sr, si}; // left shift, serial input
end
Regards, Frank

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page