-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchanges
More file actions
6223 lines (5109 loc) · 300 KB
/
changes
File metadata and controls
6223 lines (5109 loc) · 300 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
----------
emer Date: Sun Sep 25 10:09:26 EDT 2011 CSN: CSN-leap-platforms-usrp-1
Sun Sep 25 14:09:26 UTC 2011
Directory .
configure Locally Added 0
Makefile.in Locally Added 0
Directory aux-scripts
missing Locally Added 0
install-sh Locally Added 0
Directory .
aux-scripts/ Locally Added 0
Directory include
config.h.in Locally Added 0
Directory .
include/ Locally Added 0
configure.in Locally Added 0
Directory admin/packages
leap-platforms-usrp Locally Added -
platforms-usrp Locally Removed 15
Directory .
tools/ Locally Added 0
Directory modules
platforms-usrp/ Locally Removed 15
Directory modules/platforms-usrp
tx-chain/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain
testbench/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/testbench
cmdfile Locally Removed 15
.gitignore Locally Removed 15
Makefile Locally Removed 15
README Locally Removed 15
Directory modules/platforms-usrp/tx-chain
coregen/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/coregen
fifo_xlnx_16x40_2clk.ngc Locally Removed 15
icon.veo Locally Removed 15
icon.asy Locally Removed 15
fifo_xlnx_64x36_2clk.v Locally Removed 15
fifo_xlnx_512x36_2clk.xco Locally Removed 15
fifo_xlnx_512x36_2clk_readme.txt Locally Removed 15
coregen.cgp Locally Removed 15
fifo_xlnx_16x40_2clk_fifo_generator_v4_3_xst_1.ngc_xst.xrpt Locally Removed 15
fifo_xlnx_2Kx36_2clk.veo Locally Removed 15
ila.xco Locally Removed 15
fifo_xlnx_64x36_2clk_fifo_generator_v4_3_xst_1.lso Locally Removed 15
fifo_xlnx_2Kx36_2clk.asy Locally Removed 15
fifo_xlnx_16x40_2clk.xco Locally Removed 15
fifo_xlnx_512x36_2clk.sym Locally Removed 15
fifo_xlnx_16x40_2clk_xmdf.tcl Locally Removed 15
fifo_xlnx_512x36_2clk.vhd Locally Removed 15
fifo_generator_release_notes.txt Locally Removed 15
u2_rev3.edf Locally Removed 15
fifo_xlnx_64x36_2clk.ngc Locally Removed 15
fifo_xlnx_512x36_2clk.vho Locally Removed 15
icon.ncf Locally Removed 15
icon.ngc Locally Removed 15
fifo_xlnx_16x19_2clk_flist.txt Locally Removed 15
fifo_xlnx_2Kx36_2clk_readme.txt Locally Removed 15
fifo_xlnx_16x19_2clk_fifo_generator_v4_3_xst_1.ngc_xst.xrpt Locally Removed 15
ila_xdb/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/coregen/ila_xdb
tmp/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/coregen
fifo_xlnx_64x36_2clk_fifo_generator_v4_3_xst_1.ngc_xst.xrpt Locally Removed 15
fifo_xlnx_2Kx36_2clk_xmdf.tcl Locally Removed 15
fifo_xlnx_16x19_2clk.veo Locally Removed 15
my_serdes_tx.v Locally Removed 15
fifo_xlnx_64x36_2clk.xco Locally Removed 15
fifo_xlnx_2Kx36_2clk.ngc Locally Removed 15
ila.xise Locally Removed 15
fifo_xlnx_512x36_2clk_flist.txt Locally Removed 15
fifo_xlnx_16x19_2clk_xmdf.tcl Locally Removed 15
fifo_xlnx_64x36_2clk_xmdf.tcl Locally Removed 15
icon.xco Locally Removed 15
fifo_xlnx_512x36_2clk_fifo_generator_v4_3_xst_1.ngc_xst.xrpt Locally Removed 15
fifo_xlnx_2Kx36_2clk_flist.txt Locally Removed 15
fifo_xlnx_16x19_2clk.v Locally Removed 15
ila.ise Locally Removed 15
mkFIFO1to2.v Locally Removed 15
Makefile.srcs Locally Removed 15
fifo_xlnx_512x36_2clk.veo Locally Removed 15
fifo_xlnx_16x40_2clk_flist.txt Locally Removed 15
fifo_generator_ug175.pdf Locally Removed 15
fifo_xlnx_512x36_2clk.asy Locally Removed 15
ila.gise Locally Removed 15
fifo_xlnx_2Kx36_2clk.xco Locally Removed 15
icon.v Locally Removed 15
fifo_xlnx_16x19_2clk_fifo_generator_v4_3_xst_1.lso Locally Removed 15
ila.cdc Locally Removed 15
ila.veo Locally Removed 15
fifo_xlnx_512x36_2clk_xmdf.tcl Locally Removed 15
icon.xise Locally Removed 15
ila.asy Locally Removed 15
fifo_xlnx_16x40_2clk.veo Locally Removed 15
fifo_xlnx_512x36_2clk.v Locally Removed 15
fifo_xlnx_16x40_2clk_readme.txt Locally Removed 15
fifo_xlnx_2Kx36_2clk.v Locally Removed 15
ila.v Locally Removed 15
fifo_xlnx_2Kx36_2clk.sym Locally Removed 15
fifo_xlnx_16x40_2clk.v Locally Removed 15
fifo_xlnx_512x36_2clk_fifo_generator_v4_3_xst_1.lso Locally Removed 15
icon.gise Locally Removed 15
fifo_xlnx_2Kx36_2clk_fifo_generator_v4_3_xst_1.lso Locally Removed 15
fifo_xlnx_2Kx36_2clk.vhd Locally Removed 15
fifo_xlnx_16x19_2clk.ngc Locally Removed 15
fifo_xlnx_2Kx36_2clk_fifo_generator_v4_3_xst_1.ngc_xst.xrpt Locally Removed 15
mkFIFO16to32.v Locally Removed 15
fifo_xlnx_2Kx36_2clk.vho Locally Removed 15
_xmsgs/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/coregen/_xmsgs
pn_parser.xmsgs Locally Removed 15
Directory modules/platforms-usrp/tx-chain/coregen
fifo_xlnx_64x36_2clk_flist.txt Locally Removed 15
u2_core.v Locally Removed 15
fifo_xlnx_512x36_2clk.ngc Locally Removed 15
.gitignore Locally Removed 15
icon.ise Locally Removed 15
fifo_xlnx_16x19_2clk.xco Locally Removed 15
my_serdes_rx.v Locally Removed 15
fifo_xlnx_64x36_2clk.veo Locally Removed 15
fifo_xlnx_16x19_2clk_readme.txt Locally Removed 15
ila.ncf Locally Removed 15
ila.ngc Locally Removed 15
fifo_xlnx_64x36_2clk_readme.txt Locally Removed 15
fifo_in_32_out_16.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
models/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/models
miim_model.v Locally Removed 15
SRL16E.v Locally Removed 15
RAMB16_S36_S36.v Locally Removed 15
MULT18X18S.v Locally Removed 15
SRLC16E.v Locally Removed 15
BUFG.v Locally Removed 15
CY7C1356C/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/models/CY7C1356C
cy1356.inp Locally Removed 15
testbench.v Locally Removed 15
readme.txt Locally Removed 15
cy1356.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/models
uart_rx.v Locally Removed 15
FIFO_GENERATOR_V4_3.v Locally Removed 15
M24LC02B.v Locally Removed 15
xlnx_glbl.v Locally Removed 15
math_real.v Locally Removed 15
cpld_model.v Locally Removed 15
serdes_model.v Locally Removed 15
adc_model.v Locally Removed 15
phy_sim.v Locally Removed 15
M24LC024B.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
fifo/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/fifo
fifo36_to_fifo19.v Locally Removed 15
fifo19_to_fifo36.v Locally Removed 15
fifo36_to_ll8.v Locally Removed 15
ll8_to_fifo36.v Locally Removed 15
fifo19_to_ll8.v Locally Removed 15
ll8_to_fifo19.v Locally Removed 15
fifo_2clock.v Locally Removed 15
Makefile.srcs Locally Removed 15
ll8_shortfifo.v Locally Removed 15
fifo_2clock_cascade.v Locally Removed 15
buffer_int.v Locally Removed 15
fifo_cascade.v Locally Removed 15
buffer_pool_tb.v Locally Removed 15
fifo_new_tb.vcd Locally Removed 15
.gitignore Locally Removed 15
fifo_long.v Locally Removed 15
buffer_pool.v Locally Removed 15
fifo_short.v Locally Removed 15
fifo_spec.txt Locally Removed 15
buffer_int_tb.v Locally Removed 15
fifo_tb.v Locally Removed 15
fifo36_to_fifo18.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
simple_gemac/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/simple_gemac
simple_gemac_wb.v Locally Removed 15
simple_gemac_wrapper.build Locally Removed 15
test_packet.mem Locally Removed 15
Makefile.srcs Locally Removed 15
simple_gemac_wrapper19_tb.v Locally Removed 15
simple_gemac.v Locally Removed 15
eth_tasks.v Locally Removed 15
simple_gemac_wrapper.v Locally Removed 15
miim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/simple_gemac/miim
eth_miim.v Locally Removed 15
eth_shiftreg.v Locally Removed 15
eth_outputcontrol.v Locally Removed 15
eth_clockgen.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/simple_gemac
simple_gemac_wrapper_f36_tb.v Locally Removed 15
simple_gemac_wrapper19.build Locally Removed 15
address_filter.v Locally Removed 15
rxmac_to_ll8.v Locally Removed 15
ll8_to_txmac.v Locally Removed 15
simple_gemac_rx.v Locally Removed 15
simple_gemac_wrapper19.v Locally Removed 15
simple_gemac_tx.v Locally Removed 15
.gitignore Locally Removed 15
eth_tasks_f36.v Locally Removed 15
flow_ctrl_rx.v Locally Removed 15
eth_tasks_f19.v Locally Removed 15
delay_line.v Locally Removed 15
flow_ctrl_tx.v Locally Removed 15
crc.v Locally Removed 15
simple_gemac_tb.v Locally Removed 15
simple_gemac_wrapper_tb.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
serdes/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/serdes
serdes_rx.v Locally Removed 15
serdes_tx.v Locally Removed 15
Makefile.srcs Locally Removed 15
serdes.v Locally Removed 15
serdes_fc_rx.v Locally Removed 15
serdes_fc_tx.v Locally Removed 15
serdes_tb.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
timing/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/timing
time_sender.v Locally Removed 15
timer.v Locally Removed 15
.gitignore Locally Removed 15
Makefile.srcs Locally Removed 15
time_receiver.v Locally Removed 15
time_compare.v Locally Removed 15
time_64bit.v Locally Removed 15
time_transfer_tb.v Locally Removed 15
simple_timer.v Locally Removed 15
time_sync.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
udp/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/udp
add_onescomp.v Locally Removed 15
prot_eng_tx_tb.v Locally Removed 15
Makefile.srcs Locally Removed 15
prot_eng_rx.v Locally Removed 15
fifo19_rxrealign.v Locally Removed 15
prot_eng_tx.v Locally Removed 15
udp_wrapper.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
opencores/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
aemb/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb
rtl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/rtl
verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/rtl/verilog
aeMB_core.v Locally Removed 15
aeMB_edk32.v Locally Removed 15
aeMB_sim.v Locally Removed 15
aeMB_bpcu.v Locally Removed 15
.gitignore Locally Removed 15
aeMB_core_BE.v Locally Removed 15
aeMB_regf.v Locally Removed 15
aeMB_ctrl.v Locally Removed 15
aeMB_xecu.v Locally Removed 15
aeMB_ibuf.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb
doc/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/doc
aeMB_datasheet.pdf Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb
sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/sim
.gitignore Locally Removed 15
verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/sim/verilog
aemb2.v Locally Removed 15
edk32.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/sim
CODE_DEBUG.sav Locally Removed 15
cversim Locally Removed 15
iversim Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb
sw/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/sw
c/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/sw/c
libaemb.h Locally Removed 15
aeMB_testbench.c Locally Removed 15
endian-test.c Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/aemb/sw
gccrom Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
simple_pic/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/simple_pic
rtl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/simple_pic/rtl
simple_pic.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
Makefile.srcs Locally Removed 15
simple_gpio/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/simple_gpio
rtl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/simple_gpio/rtl
simple_gpio.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
wb_zbt/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/wb_zbt
wb_zbt.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
spi/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi
bench/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/bench
verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/bench/verilog
tb_spi_top.v Locally Removed 15
wb_master_model.v Locally Removed 15
spi_slave_model.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi
rtl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/rtl
verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/rtl/verilog
spi_top.v Locally Removed 15
spi_clgen.v Locally Removed 15
timescale.v Locally Removed 15
spi_defines.v Locally Removed 15
spi_shift.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi
doc/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/doc
spi.pdf Locally Removed 15
src/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/doc/src
spi.doc Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi
sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/sim
rtl_sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/sim/rtl_sim
run/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi/sim/rtl_sim/run
rtl.fl Locally Removed 15
sim.fl Locally Removed 15
run_sim Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
8b10b/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/8b10b
decode_8b10b.v Locally Removed 15
.gitignore Locally Removed 15
8b10b_a.mem Locally Removed 15
validate_8b10b.v Locally Removed 15
README Locally Removed 15
encode_8b10b.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
i2c/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c
bench/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/bench
verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/bench/verilog
tst_bench_top.v Locally Removed 15
wb_master_model.v Locally Removed 15
spi_slave_model.v Locally Removed 15
i2c_slave_model.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c
rtl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/rtl
verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/rtl/verilog
i2c_master_byte_ctrl.v Locally Removed 15
i2c_master_defines.v Locally Removed 15
timescale.v Locally Removed 15
i2c_master_bit_ctrl.v Locally Removed 15
i2c_master_top.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/rtl
vhdl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/rtl/vhdl
i2c_master_byte_ctrl.vhd Locally Removed 15
i2c_master_bit_ctrl.vhd Locally Removed 15
i2c_master_top.vhd Locally Removed 15
tst_ds1621.vhd Locally Removed 15
I2C.VHD Locally Removed 15
readme Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c
doc/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/doc
i2c_specs.pdf Locally Removed 15
src/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/doc/src
I2C_specs.doc Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c
sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/sim
i2c_verilog/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/sim/i2c_verilog
run/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/sim/i2c_verilog/run
ncverilog.key Locally Removed 15
run Locally Removed 15
bench.vcd Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c
software/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/software
include/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/i2c/software/include
oc_i2c_master.h Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores
README Locally Removed 15
spi_boot/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot
bench/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/bench
vhdl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/bench/vhdl
tb_pack-p.vhd Locally Removed 15
tb_elem-mmc-c.vhd Locally Removed 15
tb_rl-c.vhd Locally Removed 15
tb_rl.vhd Locally Removed 15
tb-c.vhd Locally Removed 15
tb.vhd Locally Removed 15
tb_elem-full-c.vhd Locally Removed 15
tb_elem.vhd Locally Removed 15
card-c.vhd Locally Removed 15
card.vhd Locally Removed 15
tb_elem-minimal-c.vhd Locally Removed 15
tb_elem-sd-c.vhd Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot
rtl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/rtl
vhdl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/rtl/vhdl
chip-full-a.vhd Locally Removed 15
sample/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/rtl/vhdl/sample
ram_loader-c.vhd Locally Removed 15
ram_loader.vhd Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/rtl/vhdl
chip-full-c.vhd Locally Removed 15
chip-sd-a.vhd Locally Removed 15
chip-e.vhd Locally Removed 15
chip-sd-c.vhd Locally Removed 15
spi_boot_pack-p.vhd Locally Removed 15
spi_counter-c.vhd Locally Removed 15
chip-mmc-a.vhd Locally Removed 15
chip-mmc-c.vhd Locally Removed 15
spi_boot.vhd Locally Removed 15
chip-minimal-a.vhd Locally Removed 15
chip-minimal-c.vhd Locally Removed 15
spi_counter.vhd Locally Removed 15
spi_boot-c.vhd Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot
COMPILE_LIST Locally Removed 15
doc/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/doc
spi_boot.pdf Locally Removed 15
spi_boot_schematic.pdf Locally Removed 15
src/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/doc/src
memory_organization.fig Locally Removed 15
memory_organization.eps Locally Removed 15
architecture.fig Locally Removed 15
architecture.eps Locally Removed 15
transfer.fig Locally Removed 15
transfer.eps Locally Removed 15
initialization.fig Locally Removed 15
initialization.eps Locally Removed 15
spi_boot.sxw Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot
sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/sim
rtl_sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/sim/rtl_sim
Makefile Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot
COPYING Locally Removed 15
sw/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/sw
misc/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot/sw/misc
bit_reverse.c Locally Removed 15
Directory modules/platforms-usrp/tx-chain/opencores/spi_boot
KNOWN_BUGS Locally Removed 15
README Locally Removed 15
Directory modules/platforms-usrp/tx-chain
extram/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/extram
wb_zbt16_b.v Locally Removed 15
extram_interface.v Locally Removed 15
.gitignore Locally Removed 15
Makefile.srcs Locally Removed 15
extram_wb.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain
top/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top
eth_test/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/eth_test
.gitignore Locally Removed 15
eth_tb.v Locally Removed 15
eth_sim_top.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top
single_u2_sim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/single_u2_sim
single_u2_sim.v Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top
tcl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/tcl
ise_helper.tcl Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top
u2_rev3_iad/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3_iad
impulse.v Locally Removed 15
cmdfile Locally Removed 15
.gitignore Locally Removed 15
dsp_core_tb.v Locally Removed 15
dsp_core_rx.v Locally Removed 15
dsp_core_tb.sav Locally Removed 15
wave.sh Locally Removed 15
Makefile Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top
Makefile.common Locally Removed 15
u2_rev3/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3
build_vaguely_works/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works
u2_rev3.prj Locally Removed 15
fifo_xlnx_16x40_2clk.ngc Locally Removed 15
u2_rev3_xst.xrpt Locally Removed 15
u2_rev3_xdb/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb
tmp/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp
ise/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise
__OBJSTORE__/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__
ProjectNavigator/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/ProjectNavigator
__stored_objects___StrTbl Locally Removed 15
__stored_objects__ Locally Removed 15
__stored_object_table__ Locally Removed 15
dpm_project_main/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/ProjectNavigator/dpm_project_main
dpm_project_main_StrTbl Locally Removed 15
NameMap_StrTbl Locally Removed 15
dpm_project_main Locally Removed 15
NameMap Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__
HierarchicalDesign/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/HierarchicalDesign
HDProject/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/HierarchicalDesign/HDProject
HDProject Locally Removed 15
HDProject_StrTbl Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/HierarchicalDesign
__stored_object_table__ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__
common/ Locally Removed 15
PnAutoRun/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/PnAutoRun
Scripts/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/PnAutoRun/Scripts
RunOnce_tcl_StrTbl Locally Removed 15
RunOnce_tcl Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__
STE/ Locally Removed 15
_ProjRepoInternal_/ Locally Removed 15
Autonym/ Locally Removed 15
SrcCtrl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__OBJSTORE__/SrcCtrl
SavedOptions/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise
__REGISTRY__/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
netgen/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/netgen
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
ProjectNavigator/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/ProjectNavigator
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
ngc2edif/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/ngc2edif
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
par/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/par
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
cpldfit/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/cpldfit
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
dumpngdio/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/dumpngdio
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
vlogcomp/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/vlogcomp
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
ngcbuild/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/ngcbuild
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
common/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/common
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
ngdbuild/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/ngdbuild
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
XSLTProcess/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/XSLTProcess
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
taengine/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/taengine
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
_ProjRepoInternal_/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/_ProjRepoInternal_
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
STE/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE
par/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE/par
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE
bitgen/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE/bitgen
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE
ngdbuild/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE/ngdbuild
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE
regkeys Locally Removed 15
map/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE/map
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE
trce/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE/trce
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE
xst/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/STE/xst
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
Autonym/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/Autonym
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
trce/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/trce
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
xpwr/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/xpwr
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
fuse/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/fuse
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
hprep6/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/hprep6
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
Cs/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/Cs
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
bitgen/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/bitgen
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
HierarchicalDesign/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/HierarchicalDesign
HDProject/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/HierarchicalDesign/HDProject
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/HierarchicalDesign
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
runner/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/runner
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
SrcCtrl/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/SrcCtrl
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
tsim/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/tsim
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
vhpcomp/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/vhpcomp
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
map/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/map
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
idem/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/idem
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__
xst/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise/__REGISTRY__/xst
regkeys Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp/ise
version Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb/tmp
ise.lock Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/u2_rev3_xdb
cst.xbcd Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works
u2_rev3.xpi Locally Removed 15
u2_rev3_map.psr Locally Removed 15
u2_rev3_prev_built.ngd Locally Removed 15
u2_rev3.pad Locally Removed 15
u2_rev3.ncd Locally Removed 15
u2_rev3_ngdbuild.xrpt Locally Removed 15
u2_rev3.bgn Locally Removed 15
u2_rev3.ngc Locally Removed 15
u2_rev3.ntrc_log Locally Removed 15
u2_rev3.ngd Locally Removed 15
u2_rev3.pcf Locally Removed 15
u2_rev3.bin Locally Removed 15
u2_rev3.stx Locally Removed 15
u2_rev3.bit Locally Removed 15
u2_rev3.ise Locally Removed 15
u2_rev3.par Locally Removed 15
u2_rev3.restore Locally Removed 15
u2_rev3.unroutes Locally Removed 15
u2_rev3.ngr Locally Removed 15
u2_rev3_map.mrp Locally Removed 15
u2_rev3.lso Locally Removed 15
_ngo/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/_ngo
netlist.lst Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works
u2_rev3_par.xrpt Locally Removed 15
u2_rev3_map.ncd Locally Removed 15
u2_rev3.bld Locally Removed 15
fifo_xlnx_16x19_2clk.ngc Locally Removed 15
u2_rev3.ptwx Locally Removed 15
fifo_xlnx_64x36_2clk.ngc Locally Removed 15
u2_rev3_pad.txt Locally Removed 15
u2_rev3.cmd_log Locally Removed 15
u2_rev3.drc Locally Removed 15
templates/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/templates
coregen.xml Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works
icon.ngc Locally Removed 15
u2_rev3_map.map Locally Removed 15
_xmsgs/ Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works/_xmsgs
par.xmsgs Locally Removed 15
bitgen.xmsgs Locally Removed 15
ngdbuild.xmsgs Locally Removed 15
map.xmsgs Locally Removed 15
trce.xmsgs Locally Removed 15
xst.xmsgs Locally Removed 15
Directory modules/platforms-usrp/tx-chain/top/u2_rev3/build_vaguely_works
u2_rev3.twr Locally Removed 15
u2_rev3.syr Locally Removed 15
u2_rev3_summary.xml Locally Removed 15
u2_rev3.xst Locally Removed 15
u2_rev3_map.ngm Locally Removed 15
u2_rev3_pad.csv Locally Removed 15