alt_sqrt.cmp 1.0 KB

1234567891011121314151617181920212223242526
  1. --Copyright (C) 2023 Intel Corporation. All rights reserved.
  2. --Your use of Intel Corporation's design tools, logic functions
  3. --and other software and tools, and any partner logic
  4. --functions, and any output files from any of the foregoing
  5. --(including device programming or simulation files), and any
  6. --associated documentation or information are expressly subject
  7. --to the terms and conditions of the Intel Program License
  8. --Subscription Agreement, the Intel Quartus Prime License Agreement,
  9. --the Intel FPGA IP License Agreement, or other applicable license
  10. --agreement, including, without limitation, that your use is for
  11. --the sole purpose of programming logic devices manufactured by
  12. --Intel and sold by Intel or its authorized distributors. Please
  13. --refer to the applicable agreement for further details, at
  14. --https://fpgasoftware.intel.com/eula.
  15. component alt_sqrt
  16. PORT
  17. (
  18. clk : IN STD_LOGIC ;
  19. radical : IN STD_LOGIC_VECTOR (47 DOWNTO 0);
  20. q : OUT STD_LOGIC_VECTOR (23 DOWNTO 0);
  21. remainder : OUT STD_LOGIC_VECTOR (24 DOWNTO 0)
  22. );
  23. end component;