diff options
author | jesstherobot <jessb@leaflabs.com> | 2013-03-20 11:38:34 -0400 |
---|---|---|
committer | jesstherobot <jessb@leaflabs.com> | 2013-03-20 11:38:34 -0400 |
commit | 7935ed6b728c16825006a175d5438a74393d81c4 (patch) | |
tree | ba73147ea7c397cd745f741805d0d6c5e27d806c | |
parent | eef34f2975ddb40d0aaedd7a0182111c22db47cf (diff) | |
download | basic-hdl-template-7935ed6b728c16825006a175d5438a74393d81c4.tar.gz basic-hdl-template-7935ed6b728c16825006a175d5438a74393d81c4.zip |
Corrects comments (clock is 200MHz, not 100MHz) and removed incorrect clock timing constraints.
-rwxr-xr-x | project.ucf | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/project.ucf b/project.ucf index 322c05a..1581eb6 100755 --- a/project.ucf +++ b/project.ucf @@ -1,6 +1,6 @@ NET "PUSH_BUTTON_RESET_RAW" LOC = F3; -#100MHz clock +#200MHz clock NET "SYSTEMCLOCK" LOC = K21; NET "Switch_input_0" LOC = C18; @@ -13,9 +13,3 @@ NET "LED_output_2" LOC = AB4; NET "LED_output_4" LOC = D21; NET "LED_output_5" LOC = W15; -# Defines the external differential clock to be 150 MHz with 50% duty -# cycle. - -NET "SYSTEMCLOCK" TNM_NET = "SYSTEMCLOCK"; -TIMESPEC TS__SYSTEMCLOCK = PERIOD "SYSTEMCLOCK" 5 ns HIGH 50 % PRIORITY 2; - |