-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample_repos.txt
2000 lines (2000 loc) · 50 KB
/
sample_repos.txt
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
eldougo/verilog_uart_ctl
nataliafuentes/CodigoVHDL
akshaysankineni/Myprojects
igorcbrito/projeto1_circuitos
embedded-systems-i-spring-2019/hw-5-submission-Alex-Ameri
marcuscw-uci/Mem
deweiwork/b2test_ut3GP
lsst-camera-electronics/REB_v4_daq1
magelion/ArcProject
jovanhan2/Real-time-hardware-zoom
Zak-Olyarnik/CS-281
Denozhan/FPGA-Term-Project
Red-Portal/EEE2052
fnysalehi/CacheController
hamzamuric/100DaysOfCode
CzakoZoltan08/SCS_2019_Projects
tariqmuh/Vmod_in_HDMI_100MHz
RationalKuma4/upiita-DisenoDigital
Flamacue/classes
BastienBigue/FPGASoundSystem
open-sdr/openwifi-hw
digibird1/FIRFilter
freecores/wishbone_out_port
diegopanepo/ProcesseurMulticycle
alisson002/VHDL
17jtoc/RISC-Computer
danielvanpaass/bomberman
michelequinto/xUDP
Nithichai/HighLV_Mini_Project
MuhammadMajidAltaf/Zynq-4
GSI-CS-CO-Forks/general-cores
mablinov/glyph
SHossamM/Computer-Architecture
JiriFurda/INC-proj
fabiodl/verilogutils
filter-digital/TCAS-II-00594-2016
AyoubSabri/uart-ip-vhdl
stanfordee108/lab1
go2starr/ece453-project
toddbranch/ECE383
futureoceanlab/Radiometer
freecores/e1framer
has58/encoder-decoder
cdumonde/PR214
lnguyen1/FPGA_tdcgpx2
Stateford/ram-counter
Alexei95/briscola-fpga
bobogei81123/dclab-lab2-temp
zelka90/zynqberry_mul_ip
GuillermoGarrido/Miscellaneous
1akshat1/Co-Design-Challenge
baudrate9600/DE10-NANO
smarco17/playground
SohamKaranjikar/ECE437SP2020
matthewlh/EELE475
teenagerold/FPGA_SDR-mars-board
thalesms2/learningVHDL
EnzoAlbornoz/CircuitProject
luisaltamirano1501/Single-Cycle-7.1-con-testbench
gauravtewari/vhdl-designs
mattzimm91/dma_issue_demonstrator
Speccery/breadboard
nd4pa/VHDL-tp
JorgeSasiain/Zynq_C
Pinwino/debugger
luffymaika/jiaotongdeng-VHDL
leowang721/fcfe101
fpgadeveloper/microzed-custom-ip
thetorque/ion_clock_mahidol
shuiqinggang/EI332
HengRuiZ/Digit-Display
seekworser/ise_project_template
Tennsoku/Bluetooth-Gesture-Recognizer-Glove
aalvare3/CPE-487-VHDL-Project
ajiwan/Load_BRAM_HW
mrturkmen06/DigitalDesign
yamaguchi1024/ISkadai2016
daveshah1/DSITx
shahinrahbari/CPU-
AdanDuM/Celular
ciroceissler/mc602
tommakrin/Brenda
paulscherrerinstitute/vivadoIP_spi_simple
RickKimball/VHDL
Tomspol/Digital-electronics-1
aimeemikaelac/add_ten
josephSEmbedded/Lab_3
jakeprem/ADLD
BerkayTmz/VHDL-Ethernet-With-BRAM-Implemented
maoaiz/Mips-Monociclo
thisnameistaken/ece385git
JackHack96/pse_xtea_vhdl
zipper97412/tp-vhdl
e-dwar/m1s1aeo
NCKraus/FPGAInvaders
saminkamangar/LAB4.codes
vytukas/inf4_proj_main
veranki/mandelbrot-hls
bekroogle/pegedit
delhatch/Zedboard_Mandel
kiranjose/RS232-Transmitter-in-VHDL
alphaduke0/VHDL
chiggs/bing_bang_bong
SebasttianVelez/ProcesadorArq
KTMonadjem/ERS220Practical3
akideria/AESonFPGA
KevinAsher/spi-vhdl
AllStarLink/zaptel
timporter/fpga-funky-calculator
davidjaw/FPGA
santhoshvivek/Robocode
arthurbeggs/LabsOAC
JasperArneberg/ECE281_Lab2
fundamental/modv
Jetuco/Procesador2
vitorTest/vhdl
gytenis98/LAB3
martinroosp/mips-vhdl
patrick-g-zhang/mips_cpu
freecores/rsa_512
mpsitech/MultiSpectralDetectorDevice
johnfaria/count_down_app
Diaverse/Frontend
LucasMahieu/TP_secu
e-lab/LCMS2012_JAN-Verilog
18avd10/Design-and-Implementation-of-Security-System-for-Multiple-Rooms
nimamshah/Digital-Design-Labs
parker-xilinx/jubilant-enigma
rigsb/4-bit-Adder-Subtractor
AYCHErp/Frapid
rmanzoni/tH
alinealves/CORDIC-Vectoring-em-Verilog
vsilantiev/CERNLAST
mamoin/VHDL
mcataford/MIPS-CPU
ipupiara/rustLight
robinsonb5/WS2812B
AEW2015/PYNQ_PR_Overlay
michaelkari/VHDL-for-Combinational-Circuits-and-Storage-Elements
itraviv/VHDL_mario
AA-CubeSat-Team/soci-cdh-fpga-test
pratyush911/VHDL-Codes
Pyong2015112261/Lab2-1-New
hao310rui140326/my_pe
viv-liu/ECE352-Processor
dmacintyre/Energy-Management-System
pronoym99/PN-Sequence-Generator
eda-lab/CNNAF-CNN-Accelerator
EMB3-G1/vga_pong
andernil/VHDL-PID
Tholfaqar/FPGA
IanGoodbody/ECE281_CE2
ATaylorCEngFIET/BRAM_Update
prashantpawar/pdfmake.github.io
ram-bhaskara/HDMI-Tx
databaser1/html-file-query
alexluz321/FPGA-implementations
freecores/t80
Rapidnack/Fx2DeviceServer2
kareen2707/LCD_Controller
farbius/dellme_i2c
alirezarohani/adder_bernalli
Jerc007/Open-GPGPU-FlexGrip-
vishpbharadwaj/SHA3-VHDL
LorhanSohaky/UFSCar
pedro-it-Rep/CPU-with-Pipeline
dspsandbox/ZynqUbuntu
FueledbyJordan/ZYBO_UART
dds0800/CSE_UNDERGRAD
20163620/Pirmass
bendelathouwer/Fpga_project
objcio/pygments
OndroNR/dangerous-prototypes-open-hardware
JuninhoCarlos/HPWOA
ranjeet692/webapplication
LuizFelipeLemon/Circuitos-Digitais
ignalauret/ARMv8
Furkan9268/zedboard_to_zc702
josephSEmbedded/Lab-1
Dragonturtle/SHERPA
PabloVieira/t2_arq
HermanZeng/FPGA-labs-Verilog-HDL-
boztalay/OZ-4
ee-lco/geda-gaf
andrempmattos/INE5406
vsilantiev/ADCCERNFORVIVADO
bbardi/VGA_Basys3
AriPal/VHLD-FPGA-Project3
OPup/Musca
itam-sdi-11561-spring-2019/practica3-villafuertebrenes
Em15-326-LiXiang/lab
abhinav333/serial_ALU
yusaira-khan/lab1-2
robbsherwin/Gehstocks-Mist_FPGA-History
rj-jesus/InfraRed-LED-Controller
JJRnumrous/ardu
meggamind/vhdl
embedded-systems-i-spring-2019/lab-1-submission-kimkeon
Daniel-BG/axi-modules
nicolavianello95/parking_sensor
SirWillian/College-Projects
jollybao/Pong
shreshthtuli/ARM-based-multicycle-processor-VHDL
iqaz100/UCiSW_2
snidell/CSE2441
GitHuber-ops/VHDL_Digital_Clock
Predator01/Levi
Meghna-Goyal/FPGA-Simulation-using-ModelSim
mclmorais/el68a-space-invaders
takuma-ya/FPU
vinihcampos/CircuitosVHDL
hidirerbay/Drexel-ECEC355
cyruswachong/Morse-Code-Generator
balbertini/hwProjects
ronaldof1s1/Acceleration_array
homermalijan/cmsc132-vhdl-assign01-Malijan-Payawal
nxt4hll/roccc-2.0
mirdaki/small8-like-processor
jgmarsar/MIPS-Processor-Lab5
jdrub/405lab3
pjshumphreys/easyflash
mozcelikors/DigitalClockWithVGA_VHDL
ghodhbane/Zynq_Fault_tolerance-
ThorMortensen/digital_design2017
Speccery/fpga99
TheBrainary/MMLUpdates
j2cheema/Pong-Game
bsterrett/FFT-Coprocessor
Sourindu/Zero-OverHead-Loop-ZOL-FIR-Microprocessor
angeld404/TMEH-Project
yafenghu/backup
ShadAhammed/VHDL-code-for-designing-ML-architecture
audiocircuit/NCSU-Low-Power-RFID
reed-foster/uCPUvhdl
SoCmodder/School
machengchong/xilinx_
hansiglaser/trfsm
freecores/flha
xroy95/U_PMOD_Motor_Interface
tutugordillo/Computer-Technology
delhatch/VGA_mem_mapped
adilcoelho/LED_rotator
RCL-lab/NU_MASSIF
EspoTek/Spartan6Blah
RamasyaR/Altera-VHDL-Project
armstrm5/AudioVisualizer
JungWKim/Baseball-Scoreboard
tallesviana/FPGA_Projects
Biwuaan/ArquiCompu
red-135/ECE428_Lab3
EmanuelMaya/Procesador1
codeChampions/codeChampions
mmking2048/mips
la-rubia-me-hace-celt/Celt-Digital
etcpartron/FPGA
oOIFOo/2018-spring-sw-hw-co-design
matferronato/VHDL
freecores/yac
bmighall/VHDLBinarytoHex
ESIstream/ESIstream_Xilinx_KU060_V2-2
james6381/ECE253-Digital-and-Computer-System
bontango/MA55
SK747/VHDL-Projects
Ikatono/vhdlFizzBuzz
AbdelrhmanKhater/Sequential-multiplier
aedalzotto/Hermes-Output-Buffer
clasicus/DK-MIPS
ekidd237/dotfiles
datacipy/VHDL
klasocki/FPGA-dice
zhouyijie/computer_architecture
skrasser/papilio_synth
architectureClass/firstprocessorgroup2-ARK3540
shurik-ua/ReVerSE-U8
nicallennn/YR2_VHDL
mclindino/VHDL-Bomb
BBBSnowball/fpga-workshop
cheehieu/tomasulo-processor
javiervalcarce/fpgalink
iparikshitdubey/16-Bit-CPU-design
Bsr45677/MIPS
ollie299792458/Comp-Sci-Course
BenOhse/Audio-Wobbler
knksmith57/EECS373-FA13-XY-Plotter
pradyuishere/sequence-detector-1010
rdsalemi/fpgasimulation
Salem2219/fibonacci
BrockMHarris/VGA-FPGA-tamagotchi-game
pyrochat/mooc-led
luismrodriguezc/DIY-2port-VNA2
mangoleaves/COD-LABS
trevorhill/Pixel_perfect
ACWoods/Automated-Disc-Kiosk
RPeschke/example_repo
asnows/prj_mpsoc
CedarvilleAsee/Asee2016
jortizme/DK_4_Aufgabe
aelhosiny/ece612_project
gokart23/IITG-Microprocessor-8085
kv10348/Digital_logic_and_system
nikok94/axi_uart_16550
jgmarsar/MIPS-Processor-Lab4
ozw1z5rd/ozw1z5rd-lab
Srinandh/AES_using_Functions
nedrizv/mamabrass2
kartikp1995/UART-Receiver
mengsay/vhdl-counter
LBoutigny/Xilinx-Zybo-Z7010_VGAoutBSD
AtomicRoland/yarrb2-cpld
GreenBayRules/quark-editor
wltr/cern-onewire-idtemp
gsomani/divider_vhdl_basys3
Zenkala/projects
VideoGPU/MIPI_CSI2_TX
browthom/vhdl-user-component-dir
20163440/Visi-Laborai
ljepson74/svsc
RiceShelley/homebrew-computer
jtdevs/Lab-digitales
PaolaSanchezCastillo/VLSI-Project
donaca/dcdc_proj
obiwit/vhdl-enigma
MiSTer-devel/Arcade-Xevious_MiSTer
jonnxpr/part3---v2-LAOC-II
nikkone/TTK4155-Gruppe46
Response777/THCO-MIPS-CPU-310A
SparcV8/2016ii
cirkovic/hydjetSLflow
ydidwania/Pipeline-IITB-RISC
MAPJe71/Languages
troykollar/ysu-greenhouse
magnusbae/spawncamping-avenger
kathleenrego/ELE0517-SISTEMAS-DIGITAIS
martin-bobek/WaveformGenerator
Blackieyan/1Gsps_ADC_board
fsgdez/Verilog_Processor_Project
DarthRubik/HybridControlBoard
l846923484/all_connected_network-to-be-continue-
Jorge9314/ArquitecturaComputadores
npiscitello/RoboChess
mlutwak/Bad_Raycaster
jayvalentine/code-to-silicon
lamodey/mips-segmentado-arqui1
NemanjaLazic1997/lab3
VctorControl/VGA_autoplay_music
javs9708/primerProcesador
remusbompa/Floating-Point-multiplier
Nerradia/BrushlessDriver
mitre-cyber-academy/2019-ectf-hardware
Clockfix/RTR532
DejavuAlex/2FSK-2PSK-2DPSK-QPSK-code-and-decode
egurcay/BasySOS
Letractively/miniemc2
dwsl/mu_mimo_WarpRx
Burseker/dma8chan
josipursan/DigitalElectronics_VHDLPractice
pintoXD/sedr_final
DayUpWoniu/uhd_examples
wangrunji0408/Balance
BryanAggoun/fpga2018
liuyal/Archive
Esgariot/GrayCounter_SystemC
pecarm/Digital-Electronics-1
cold-ice/Butterfly
Estevanll/AHB_control_4c
phantomcoder1996/processorAndAssem
ooiisssseellaa/EDUCATIONAL-RED_PITAYA-125_14
zardam/VHDL_Experiments
mato8246/Digital-electronics-1
dsdnu/VerilogTrain
harrylisby/8bitMicro
andrefakhoury/mini-CPU
nfarnesi4/mips32
Hexum064/MachXO2_VHDL_ScreenDriver
NVSL/MingII
marcelo-martins/logical-circuits
glgauthier/MQP
Sharemon/FPGA-part-time
Bsingstad/FYS4220_2019_Lab4
ishailesh8/PPM-VHDL
linengmiao/spread-spectrum-wireless
pivaszbs/CA-Project
ghdl/ghdl-yosys-plugin
JamesGTang/VHDL
JeffreyPYL/ECSE-323-Digital-System-Design
danielthoren/Fan-controller
hellobyn/Nios2Core2_FALSE
PoSsIBiLiTy357/CPU-with-L1-Cache
parrisha/vhdl-aes-gcm
Jeansidharta/VHDL-easy
cpuex2015-group1/Cartelet
spb43/HDL
SeBBBe/EDA385
Christopher330/CPU_N3
andrewpeck/l0mdt-hdl-design
EsauPR/UTM
MiSTer-devel/Arcade-Defender_MiSTer
Montana-Media-Arts/391_ARVR-Fall2020
DavidCussans/timing-board-firmware
bdzanko17/CLOS-Switch-VHDL
nuft/CS-476-Real-Time-Embedded-Systems
winsonbook/ip
Parin810/Wavelets-VLSI-Design-
Gavincj97/verilog_learning
pxltech/DigitaleSystemenVHDL
wolberine/vliw_final_project
MasoodAhmedRafay/VHDL-work
marshcs/ld
kangjian888/video_trans_sourcecode
niqinghai/FPGA-finish-sha256
flyinged/EXFEL_IBFB_PLAYER
romainjayles/computer_design_0
urosisakovic/chickenInvadersFPGA
muso31/Habitat-Glass.Mapper
RW9UAO/spectrum-xilinx-sram1Mb
MichaelZiz/CacheController
estgeorge/project_vhdl
Enturk/CPEG324_lab2
jpaudel8/alarm
TomKeddie/prj-litex
rigsb/16-bit-parallel-in-parallel-out-universal-Shift-Register-
txomon/master-lrp
zangxy2020/baba
BChip/CS331-FinalExamProject-VHDL
sriharis304/camera_2_dmd-
MatthijsvanDelft/Embedded_Computer_Architecture_Ex2_GIT
manuel2santosr/355_tank_game
landboat/ALU-Design
RyanRedhead/Lab-2-Adder
brokenerk/Arquitectura-Computadoras
ShashankTekriwal/Simple-Microprocessor
Anandpv2007/CycloneIV_NIOS_LCD
ishe/plus4
mattzgto/bladerf-dvbs2
JeremyGruszka/ECE281_CE3
andernil/DDS2
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
shahedalmahmud/dangerous-prototypes-open-hardware
TDKLabs/TestRobot
madaan/entire-src
shimafujigit/SpaceWireRMAPTargetIP
IamFlea/school
harunsasmaz/Hot-and-Cold-Game
arnolmi/vhdl
beratsert/Pixel-Editor
isaiaSpinelli/SOCF
zaddan/verilog_files_on_local_drive
LuisaTheAmaral/PrimeNumberGenerator
karansahni/AHD-Processor-on-FPGA
Mytowski/7SegmentDisplayVHDL
IIC2343/Syllabus
SPRYK/HWLab_FinalProject
jovan-djukic/VLSICPU
Digilent/Arty-S7-50-base
benjmarshall/hls_scratchpad
moonwalker300/Prj2_alu
anselmorenato/wavevox
skamat95/VivadoHLS
agrecascino/risc16-vhdl
MARCOSBLACKER7/ESCOM
DivyanshuSaxena/Multicycle-Processor
mrberti/linux
habsware/CDIO.Space_Invaders
ElectronAsh/fpga_mpu401
wangxin0020/machinekit
HusseinYoussef/Processor---Computer-Architecture
PeyWn/Mother
paulinev/laser_pinball
LFMP/CDII
ghkdxofla/computerStructure
thiagorider/RadFTAH
bschreck/gesture-drone
lss5270/vue-form-making-h5
merrvecavussoglu/OR-Kap-s-
A00570852/Practica5_codigo
Digilent/ZedBoard-FMC-Pcam-Adapter-Dual-Camera
534F53/8-bit-pipelined-processor
rgBoss12/Fnatic
marsee101/ZYBO_LED_test
jamesots/z80glue
masterCopipaster/ask_rcv
adm999/Digital-electronics-1
Zait06/DSD-ESCOM
ad-sum/CENG-3420
hzsydy/Clever_Park
wurmmi/uvvm-tutorial
Nilesh75/Digital-Audio-Recorder
wangqinNick/VoiceScope
roman-pogorelov/sata_ipcore
dany994/vak-opensource
Montana-Media-Arts/creative-coding-1-Spring2019
em15-10122510310-dongxinyue/Em15_310_dongxinyue_lab2
mgarridor/Proyecto-Diseno-de-sistemas-electronicos-digitales
multi1000/dangerous-prototypes-open-hardware
markbroadmeadowqut/IEEE1355FPGA_KS
marklin23/Verilog
DanishBangash/VHDL--DICE-v1.0
errordeveloper/vhdl-misc-ct3032n
nitish6174/code_yard
becker990/Educational-VHDLs
phcosta29/Operating-system
SensorsINI/minizedVGA
Sheikhipour/myThesis
dominik932500/bartnykas
trebawa/FPGAuto-Tune
dmingn/HW_report_2017
Beigmon/UJFProjet_Reseau
variability/leon3
kdunne/aurora_fmc
jomoro1988/Complex_VHDL
mferrato/cpeg324_lab2
20162606/Ignas2
dreizehnutters/simpleCPU
timioi/System-on-Chip
dagmawim/ModernProcessorDesignProjects
canerbulduk/DSDM-Project
RVZlobin/CMD
opencores/mprfgen
jocelynr24/ProjetEolienne
fsship/Html-Playground
pfra17/DigitalClock_FPGA_VHDL
CamelClarkson/MIPS
BaptistePLL/radar_correlator_test_bench
blroot/DL-UNTREF---TP-Procesador
DavidLuengo/Moonwalk
FinalProject287RAK/ECE-287-Final-Project-Blocky-s-Adventure
katmanzell/EECS392
Andrea-Yu/FPGA
Fan4FPGA/Probe_Measure
csc-fw/dcfeb_all
LuyYitzlach/VHDL_intro
GiovanniCmpaner/fpga_exercicio1_1
koehlma/emsys
Montzter/VHDL_Testbenches
Matheusf159/Matheusf159-LAB_VHDL_MATHEUSF_AOC2018
babiloneos/Comparador2bitsVHDL
thewonderidiot/agc_monitor
cretingame/yarr_fw
frobino/axi_custom_ip_tb
fgl27/iSchool
pghu/g14_threewheeledrover
20162317/lab-darbai
firecake/IRIS
eglove/ArchitectureP
haoxuan1080/FPGA_FIFO_MatMul
wlightfoot1/Qsys_Control
Yilin1111/pipeline
dustyweisner/ECE281_CE5
AkankshaJjw/ComputerArchitecture
freecores/wrimm
tama853/dma_convolusion
holykss/getting_git_1st
risenanti/rs232Graphics
Peverous/Graph
TomWoo/Receive_subsystem
samroux/ecse425p11
Xivid/RISC-CPU
bridgeL/ProjectPynq
jinz2014/XAUI
PeterWaIIace/fpga
kchapdaily/led_matrix4x3
fcayci/xilinx-ip-repo
lsthiros/pipeline-rat
t-crest/argo
aurojyoti/VHDL
dfdias/pacman
hfegetude/SoundSystemQuartusVHDL
cherrytomato1/digital_system
Aaron-Zhao123/Newton_method_project_config
ruycastilho/MC613-Project
vgshitol/I2C_Verification_Testbench
narekisaghulyan/i2sBarGraph
MKoreo/NewRepoTest
Ang-Andrew/aes_encryption_vhdl_implementation
LarryHuaLong/SmartCar
twix20/ucisw2_projekt
TrixiaBelleza/Fetch-Decode-Execute-MemoryAccess-Writeback-System-using-VHDL
hugofragata/euromillions-keygen-vhdl
rossxhunter/Noodle-Create
AhmedMahmoud98/PDP-11-based-Microprocessor
li237340453/VHDL-game
kranfix/CPU
manjishadhikari/FPGA-Implementation
pablo384/AMD2909
suncevodete/lab3
codeChampions/spaceshipAngular
unia-sik/rcmc
jeulm333/PROCESADOR2
igorsk239/INC_projekt1
McBrez/BakkArbeit_old
eschmidtengineer/dotfiles
srikrishnachaitanyanarumanchi/XuLA-FPGA
guilhermelague/MicroMips
pyrohaz/AlteraCPLDBoard-VGABouncingBox
saint-000/Active_HDL
Kitrinx/FB1_MiSTer
MatWise/micro_cpu
Juju-62q/MIPS
jasommer/SimpleCPU
ychyang27/CNN_FPGA_accereration
engine210/qhoenix
MJoergen/bcomp
shapeelectronics/decode38
giuseppegagliano/CDMA-receiver
Ivy233/CSExperiment_MIPS
proegssilb/ddc2011
daniel1302/vhdl-24h-counter
grotius-cnc/stable
thasti/dvbs
wangjianze96/Digital-frequency-meter
nikok94/dac_ad9122
Soulthym/vhdl-servo
kennethlyn/ZYBOTemplate
jwmqms/lfw_gender
vaiganmann/serializer
pmassolino/hw-triple-weierstrass
AThabuis/EmbeddedSystemsCourse
JennyMedellin06/Arqui
dts12/uart-practice
vtchoumatchenko/PCIS
emuino/_emuino_win_local1
ShoukathAli23/Simple-Camera-control-system-
dargor0/Udec_Digitales
organizacion-de-computadores/lab.-multiplicaci-n
omar-joudi/UART-SPI-bidirectional-bridge-VHDL
eijiuema/cd_armario
camilleshainne/cmsc132-vhdl-assign01-bobilles-dalisay
carlosdon123/AD9250_test
ngdxzy/-FPGA-Sobel-
dylandpowers/turbo-interleaver
absn2/cpu_hardware
vmbatlle/MIPS-bus
kikoas1995/PipelinedProccessor
guifel/pipelined_cpu
RicardoChapaRomero/LAB_SDA
marcellommunoz/p8086
vamshikodipaka/Real-Time-Image-Control
PacoReinaCampo/PU-MSP430
dex28/dex28-hw-pld
mruizglz/UPM-ES-cyclonevbsp
Morphy-Yeboah/BCD2Aiken
Braincell1973/MIST_C64
juhasch/myhdl
bipinkh/votingMachineDesign
angelicalopez/procesadorMonociclo
sarashs/DE0-LITE-CLOCK
Victorrrocha/TITANIC2_AOC_2018_VICTOR_FRANCISCO
veeYceeY/codegen-rtl
eltortugo/audioxtreamer
w4-pwr/UCiSW2-LCD-Szpartan
freecores/yavga
Octopus-Orz/Gaussian-Noise-Generator
koletom/VHDL
milacicteodora/lab3
js216/FPGA-codes
rodrigo-romano/BLDC
orcc/orcc
user0226/simple-ATM
pbystrup/dangerous-prototypes-open-hardware
mirkoggl/Router_NoC
thinkoco/de1soc_media
Agurato/UCPU_16bits
pedagil/ReconfigurableSystemsTUC_2019
Augertron/PHDL.eclipse
alanswx/Arcade-Tempest_MiSTer
ivan-zlatev/MPIS-Project
nullobject/de10-nano-z80
martinayotte/MyAmberOnMiniSpartan6
Tarrasch/JK-vippa
CompOrg-Gr7-2016/REGISTERS
tbickle/hackrf_one
vtsal/spoc_caesar
hernad/FIT_AKS
Drayton80/University-Assignments
tifojo/usb_uart_test
fyflxl/isa_0224
MicroTCA-Tech-Lab/hectare
timmy139710/CAD-VLSI-System-Design
omarsgalal/Mini-PDP11
lpdink/reWorkCPU
alchemist231/ARM-pipelined-processor-core-Verilog-
morganjlw/VHDL-16-bit-CPU
ahoodlum/AP1220_control
t7reyeslua/iHome
betegon/FPGA-embedded-system
JoseSalamancaCoy/DetectorParticulas_MiniMute
freecores/lzrw1-compressor-core
travissutphin/phin_Framework_STS
Sandothers/DigitalLogicProject
mana147/Learning-Everything
w-frank/fpga
tj710/cms_scout_fw
Runebreaker/WS19-20-Zentralavionik
efdal1395/MIPS
branflakes2/vhdl_tb_generator
merryplover/TinyFPGA-AX2
girllovesrobots/fpglappy
mathild7/ECE1373_GhostSynth
t0rr3sp3dr0/CPU-Quartus
hanklong99/FPGA_Button
izhbannikov/fir4tap
luanc202/contador4bits
freecores/plasma
arpith-jacob/fpga-zuker-accelerator
revering/tileboard_loopback
hemanshuEng/FPGA
marcossuzuki/calculatorVHDL
Tabrizian/DA-Homework
LukJA/EPQ2017SAND
mattkelly/traffic-light
daahuang/ee180-lab3
mmenchon/Lab-Arqui-1
barua-anik/System-on-Chip-Design
this-marwan/VHDL
martinayotte/MyStormOnMiniSpartan6
jsyk/spnsyn-demo
maxim79135/Course_3
deweiwork/b2test_UT3_opensrc_1ch_TC
yaxin-wang-cueson/combination-lock-with-VHDL-
miguel-prado/FPGA_based_phase_angle_control
savvn001/De1-SoC-FPGA-Audio-Spectrum-Analyzer
SashaLag/PortingKlessydra
jeissoncc/Procesador3
slaclab/atlas-altiroc-daq
jiamingc0824/VHDL-Project
filipamator/SDCard_AXI4
philippefaes/vhdl2008-tester
belikePac/PWr_student_projects
dawsfox/Embedded-System-Design
Idorobots/upnod-card0117-tn64
kcranky/EEE4022S
AloriumTechnology/XLR8Core
verimake-team/SparkRoad-V
mirkoggl/NoC_Flint_VC
A00826162EmilioGermanDiazMorelos/A00826162EmilioGermanDiazMorelos
rjarzmik/mips_processor
OmerKonan/FPGA-UART-Communicaton
salcanmor/Verilog
ilj132/De-volta-ao-Jogo
anothermist/LIBRARIES
C16erikthompson/ECE281_CE1
freecores/hwlu
felipetormes/4x4-Multiplier-VHDL
Team-PAIN/Team-Pain
ghdl/ghdl-cosim
RafaelChavesPB/Sistemas-Digitais
suncevodete/LPRS-lab5
axytho/GMSK100
KamijouToumaKun/Stopwatch
toddjasonblackmon/vhdl_lab2
Swatantara-iitb/Memory-Interface-Generator
andrewlrobertson/CPE-166-LAB
sigasi/sigasi_premium_tutorial
huntforweeks/MIPS.MultiCycle.NonPipelined
bdavs/UMDRISC_P1
Leostayner/MIPS_Pipeline
maicondmenezes/mipsPipeline
YudiQiu/snap_x265
peterotte/TAPSExpTrigger
Jhonier123/Entrega_1_Arquitectura
saksham36/180nm-Inverter-and-8-bit-multiplier
HazemAbaza91/VHDL
eraguzin-bnl/nEXO-WIB_Emulator
Raverstern/LegoCar
WangTianpengSEU/FPGA-Object-Recognition-and-Tracking
kuoyaoming/Lab.-of-Digital-Systems-Design
vhdlcodes/clock_div_1Hz_vhdl
supercalvinchan/VERI_LAB_EE2
weizhenjiang1996/FPGA_BASYS3
1997cui/google-authenticator
EliasManj/altera-de2-70-lcd-lab
RazKarapetyan/masterThesis
boreinos/Microprocessor-Design-on-Basys-II
tanzenyoyoyo/Skripte-Demo
pemaxwell/MARC2_single_stage
pedrohba1/Sistemas-Digitais
SteveVDB/ssd-4digit
rab-ferrari/ic-design-test-sel0622
liu946/MicroInstructionsCPU
ryosuzuki/mean-app
ElenaRLois/Nano-soc_Exercise
ramonblancocaamano/UT_PROCESSING
Kruk07/programyStudia
balibrea/izel_soc
wafaSiame/m1vhdl
ogamal/Sobel
ehsan-ali-th/picoblaze_dev
embedded-systems-i-spring-2019/practice-git-submission-assignment-jhinds2
andressp05/Computers-Architecture
vinayakvivek/ATM
Rwasghar/powermonitor
JanSnoeijsEPFL/embsys_led
edwardcapstone/ProjectFreeToSee
LukeAgnew/Project-1-Datapath-Design-Part-B
juan260/ArqO_molaconlusi
bigbrett/wssha256vivado
Joreeser/Microphone_Nexys4ddr
romancardenas/PFC_ROMAN_CARDENAS_RODRIGUEZ
kuladeepsaireddy/Conjugate-Gradient
mrkevich/FPGA_2
daniidega/Trabajos-arquitectura-comp
B10213147/103-1-Hardware_Description_Language_and_Simulation
fixator/vector06cc
jeremych1000/ee3-vhdl
abdallahmagdy1993/Micro-Controller-VLSI
IvanHorpynych/Politech
nirbd28/Hamming
johnTheSloth/VUT-FIT
cbusho/Lab1_Busho
auxa/VHDL-CPU
lfgodoi/parallel-programming
WesR/ComputerEngineering-Project-1
ashwinp45/VHDL
samryanuofl/VGA_Pong
Gleb-fon-Marenko/spartan6_microblaze_helloworld
JSCBLOG/MicroBlaze_GPIO
whickman/ES31-final
hamsternz/Direct_Stream_Digital_Signal_gen
ApricotMei/AdvancedHardwareDesign
dirkmo/m68kfpga
JeanJuba/vhdl-calculator
THUwangcy/16bit-CPU
gabrielboroghina/IDEA-FPGA
c-z/rtl2gds
capitanov/intfftk
green4free/DVA336-project
ahmadnakib/UnoptimizedProcessor
myalfred03/DS18B20-VHDL-ONEWIRE
muthdra/mips-vhdl
150014739/Linux_Device_Driver_ZYNQ_FPGA
zhlinh/vhdl_course
rajarshiroy/fpga_nes_graphics
AngieAb/DIGITALES-2
guillegil/PWM-generator
msaufyrohmad/SoCLW
danielpalomino/trabalho-fucao
hussamabdellatif/HDMI_Module
GabrielGeraldino/Jogo-Assembly
hollerdawg/VUMeter
owenchj/VHDL_exp
akshaypatidar/EncrypterAndDecrypter
NicolaeNMV/vhdl-projet
dirtyharry395/UARTrw
vagtsal/Computer-Architecture
steve-chamberlin/fpga-disk-controller
ak-fau/la-demo
vhdl-examples/square-wave
AlexandreTK/VHDL-FPGA-RTL_Project
SabinaS/eecs4340
telec16/character_synthesis
Paffiusz/rstryhard
SRimbaud/TP_2A_VHDL
kelvintfy/Morse-Code-Encoder-and-Decoder
brady-aiello/CheckMate_Zybo
PSKote/MyFolder
macoj/hnn_fpga
mjcs-95/CPU_VHDL
johnlaur/Angelia
TheFirstGuy/fpnn-v1
yyunon/multi_cycle_arm
soomy/digital2
JahwnMallard/FinalProject
lililqth/MVB_Receiver
Gellesh/PDP-11-Processor
popelo/School_projects
Lewis-Kelley/JALA-CPU
aistha11/BscCSIT
SperryAG/132LProject2-master
Krasn4ck/Sistemas-Embebidos
pietrobassi/Arkanoid-VHDL
2122aaor/branch_predictors
mcoka/ProjetosLogicaProgramavel
Marchingegno/Progetto-Reti-Logiche
siglabs/copper-suicide-software
coolstar/dj48
PowerSmartControl/NV_GAE_HIL_Demostrador
tatfook/NPLDocs
adehua/chendehua
franklin-r/Melody_Generator
hellotheremike/jekyll-portfolio
zhouyijie/digital_system_design
thiagomartendal/INE5406-Sistemas-Digitais
powlo/z80
oivoodoo/Demo-Machine
electrobs/ZYBO_VIVADO_LINUX_BASE
heyderpaez/VHDLExamples
wangdeguang/DNN
avimehenwal/DigitalComputing
aignacio/cyclone_hw_sw_design_i2c
csrhau/scma-interconnect
AhmedEssamIsmail/Simple-Processor
cpuex-group2-2015/FPU
okrima/SystemC-VHDL-FMI
hongpan0507/Programming
sigasi/mips_r2000
gornad/Convolution-FPGA-Project
nisanthmathew/fpga-music-processing
benjohnson2001/base
Melqui-stest/TFG-BrazoRobotico
granaghan/rpi-freertos-playground
Roboy/roboy_fpga_interrupt
pdaxrom/pyldin2012
Sprinter1999/CPU624
gonzagab/PipelinedMultiMediaCPU
sh6khan/npm-lib-ssh
Nixon-/VHDL_library
NoSuchProcess/mist-board
dtuskenis/bsuir-14-15-labs
AlexanderEPetrov/VHDL
hlinhn/Labs
daniel-torresagui/Contador_Hexadecimal
ikwzm/QCONV-STRIP-Ultra96
rlindsberg/1331IL-VHDL-Design
lilmaine/remoteterminal
gnmmarechal/miniprojLSD
lucastansini/p-Vex
WellingtonEspindula/Neander
wagnerloch/MIPS-SDA
gihankarunarathne/vhdl-learn
Daniel-BG/VHDL-MIPS-processor
roussellw/Digital-Theremin
gplhegde/Audio_equilizer_zedboard
jubaer-pantho/ov7670-camera-porting-zybo-with-OS
obmun/mains_plls
nanoengineer/fpga-tutorial
shenils/lotr
tafulop/fpga_zh
eiselekd/lang
IA-C-Lab-Fudan/Chisel-FFT
university-studies/inp-design-of-computer-systems
martinkiefer/Scotch
pplong/mips-cpu
germanoa/ufrgs
gardners/gs4502b
anjan0112/Temperature_Sensor_vhdl_code_GSI
ssharks/veditor
embedded-systems-i-spring-2019/lab-1-submission-seanchenye
QiweiWen/nnfpga
dengbin2015/industrial_camera_CCD
AlekseyKozlov/labs
JosieLi0807/FPGAJosieVivian
Komarovec/FCPU
umstek/MicroprocessorSimulator
MelikeDogru/Vivado-Queue-Management-System
adtcruz/cmsc132-vhdl-assign01
bqUAB/disdp
jamesfrank/reversi
rwejiv/misc
boschetto/manhattan-centroid-hd
PoorlyDefinedBehaviour/vhdl
Andriuslima/CPU-Baseada-em-FSM
ffsuarez/TPVHDL
goooon/debugFpga
MMMCCCI/SCam
darianlio/ELEC374
aaakashkumar/Optimal-Page-Replacement-Implementation
osama-abouelkhair/Single-Cycle-MIPS
fatsoflo/schoolprojects
nanaessandoh/Stopwatch
rlutz/geda-gaf
danielpalomino/arquitetura-intra
AdityaGolatkar/Microprocessor-Lab-Project-IIT-Bombay
Rutgers-FPGA-Projects/NGC-Sonar
juanvalen15/qCSIM
CPEN311/Lab-1
arq19/pipelined-processor
cheiio/IPuserRepo
tamupdan/ML_noerror_first
Anprivate/al422-bam-bs
jaspreetsingh009/FPGA_PWM_CONTROL_DESIGN
callumdmay/blocker-game
timhae/hwsym
dubstainment/blog_new
redredraccoon/FPGA
nguyenhuutrang/FPGA-KIT-DE2i150
egezekyo/Sound_Localization_Camera_FPGA
algorithmlover2016/git_workspace
Given-Jiang/Gray_Processing_Altera_OpenCL_DE1-SoC
Digilent/Arty-S7-25-base-uc
xiadz/oscilloscope
alexandertuna/MMFE8
marcusbotacin/Reconfigurable-AV
mdavid626/fit
saltzmanj/TIPS_arch
bastrik/ece385
FaridaSolimann/AudioProject
ArayCHN/FPGA_VHDL_basics
m-herrera/Digital-Design-Workshop
Chinglim/CE5
krahal/RC4-Decryption-Circuit
haarthad/GestureRecognition
sorgelig/ZX_Spectrum-128K_MIST
embedded-systems-2-master/lab-8-development-debug-koml12
freecores/wb_fifo
obyrnesm/OneBitAdder
Infernux/Projects
Alexandru-S/LAB_REPORTS
TUM-LIS/faultify
wojtekpil/projekt_pul
garry980318/INP_projekt1