Skip to content

Commit

Permalink
added jira test-case
Browse files Browse the repository at this point in the history
  • Loading branch information
usmanqadir-rs committed Apr 23, 2024
1 parent 1daa953 commit 4c6347a
Show file tree
Hide file tree
Showing 8 changed files with 29,804 additions and 0 deletions.
5,271 changes: 5,271 additions & 0 deletions EDA-2739/Virgo_Pin_Table.csv

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions EDA-2739/and2_design/and2.pin
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
9 changes: 9 additions & 0 deletions EDA-2739/and2_design/and2.v
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
11 changes: 11 additions & 0 deletions EDA-2739/and2_design/and2_old.pin
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
13 changes: 13 additions & 0 deletions EDA-2739/and2_design/and2_old.v
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
14 changes: 14 additions & 0 deletions EDA-2739/and2_design/raptor.tcl
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

24,480 changes: 24,480 additions & 0 deletions EDA-2739/pinMapping.csv

Large diffs are not rendered by default.

Empty file removed EDA-2739/raptor.tcl
Empty file.

0 comments on commit 4c6347a

Please sign in to comment.