Advertisement
Guest User

Untitled

a guest
Mar 12th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. //--------------------------------------
  2. // ---- SB_HFOSC ------
  3. //--------------------------------------
  4. `timescale 1ps/1ps
  5. module SB_HFOSC ( CLKHFPU,CLKHFEN, CLKHF);
  6. input CLKHFPU,CLKHFEN;
  7. output CLKHF;
  8. parameter CLKHF_DIV = "0b00";
  9. SB_HFOSC_CORE OSCInst0(
  10. .CLKHF_EN(CLKHFEN),
  11. .CLKHF_PU(CLKHFPU),
  12. .CLKHF(CLKHF)
  13. ) /* synthesis ROUTE_THROUGH_FABRIC= 0 */;
  14. defparam OSCInst0.CLKHF_DIV = CLKHF_DIV;
  15.  
  16. `ifdef TIMINGCHECK
  17. specify
  18.  
  19. (CLKHFPU *> CLKHF) = (1.0, 1.0);
  20. // (CLKHFEN *> CLKHF) = (1.0, 1.0);
  21.  
  22. endspecify
  23. `endif
  24.  
  25. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement