-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for board "zrtech v2.00"
- Loading branch information
1 parent
345d23f
commit 56ea545
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Clock | ||
# | ||
set_location_assignment PIN_24 -to clk | ||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to clk | ||
|
||
# | ||
# LED D2 (DS_DP) | ||
# | ||
set_location_assignment PIN_3 -to q | ||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Main system clock (50 Mhz) | ||
create_clock -name "clk" -period 20.000ns [get_ports {clk}] | ||
|
||
# Automatically constrain PLL and other generated clocks | ||
derive_pll_clocks -create_base_clocks | ||
|
||
# Automatically calculate clock uncertainty to jitter and other effects. | ||
derive_clock_uncertainty |