-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1daa953
commit 4c6347a
Showing
8 changed files
with
29,804 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 @@ | ||
set_property mode Mode_BP_SDR_A_RX HP_2_0_0P | ||
set_pin_loc a HP_2_0_0P | ||
set_property mode Mode_BP_SDR_A_RX HP_2_2_1P | ||
set_pin_loc b HP_2_2_1P | ||
set_property mode Mode_BP_SDR_A_TX HP_1_0_0P | ||
set_pin_loc c HP_1_0_0P |
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,9 @@ | ||
module and2( | ||
input wire a, | ||
input wire b, | ||
output wire c | ||
|
||
); | ||
assign c = a & b; | ||
|
||
endmodule |
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 @@ | ||
set_pin_loc c HP_1_0_0P f2g_tx_out[0]_A | ||
set_pin_loc a HP_2_0_0P g2f_rx_in[0]_A | ||
set_pin_loc b HP_2_2_1P g2f_rx_in[0]_A | ||
|
||
set_pin_loc c_oen HP_1_0_0P f2g_tx_oe_A | ||
set_pin_loc in_oen[0] HP_2_0_0P f2g_in_en_A | ||
set_pin_loc in_oen[1] HP_2_2_1P f2g_in_en_A | ||
|
||
set_mode Mode_BP_DIR_A_TX HP_1_0_0P | ||
set_mode Mode_BP_DIR_A_RX HP_2_0_0P | ||
set_mode Mode_BP_DIR_A_RX HP_2_2_1P |
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,13 @@ | ||
module and2( | ||
input wire a, | ||
input wire b, | ||
output wire c_oen, | ||
output wire [1:0] in_oen, | ||
output wire c | ||
|
||
); | ||
assign c = a & b; | ||
assign c_oen = 1'b1; | ||
assign in_oen = {(2){1'b1}}; | ||
|
||
endmodule |
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,14 @@ | ||
create_design and2 | ||
target_device 1VG28 | ||
add_design_file ./and2.v | ||
set_top_module and2 | ||
add_constraint_file and2.pin | ||
analyze | ||
synthesize | ||
packing | ||
place | ||
route | ||
sta | ||
power | ||
bitstream write_xml | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.