You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
439 B

  1. // Created by IP Generator (Version 2021.1-SP7 build 86875)
  2. // Instantiation Template
  3. //
  4. // Insert the following codes into your Verilog file.
  5. // * Change the_instance_name to your own instance name.
  6. // * Change the signal names in the port associations
  7. ShiftRegister the_instance_name (
  8. .din(din), // input
  9. .addr(addr), // input [9:0]
  10. .clk(clk), // input
  11. .rst(rst), // input
  12. .dout(dout) // output
  13. );