├── .gitignore ├── LICENCE ├── Pmods ├── AD1 │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim.v │ ├── Sources │ │ ├── ad1.v │ │ ├── interfaces │ │ │ └── SPI │ │ │ │ ├── SPI.xml │ │ │ │ └── SPI_rtl.xml │ │ └── ip_repo │ │ │ └── ad1_1.0 │ │ │ ├── LICENCE │ │ │ ├── bd │ │ │ └── bd.tcl │ │ │ ├── component.xml │ │ │ ├── drivers │ │ │ └── ad1_v1_0 │ │ │ │ ├── data │ │ │ │ ├── ad1.mdd │ │ │ │ └── ad1.tcl │ │ │ │ └── src │ │ │ │ ├── LICENCE │ │ │ │ ├── Makefile │ │ │ │ ├── ad1.cpp │ │ │ │ └── ad1.h │ │ │ ├── hdl │ │ │ └── ad1_v1_0.v │ │ │ ├── sim │ │ │ ├── sim.gtkw │ │ │ ├── sources.txt │ │ │ └── tb.v │ │ │ └── xgui │ │ │ ├── ad1_v1_0.tcl │ │ │ └── ad1_v1_0_v1_0.tcl │ └── Test │ │ ├── Basys3.xdc │ │ └── test_board.v ├── CMPS2 │ ├── LICENCE │ ├── README.md │ ├── Sources │ │ └── cmps2.v │ └── Test │ │ ├── Basys3.xdc │ │ ├── block_design.tcl │ │ └── cmps2_tester.v ├── COLOR │ ├── LICENCE │ ├── README.md │ ├── Sources │ │ └── color.v │ └── Test │ │ ├── Arty-A7-100-0.xdc │ │ └── color_test.v ├── CON3 │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── con3_sim.v │ ├── Sources │ │ └── con3.v │ └── Test │ │ ├── Arty-A7-100.xdc │ │ ├── con3_tester.v │ │ └── design_con3.tcl ├── DA2 │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim.v │ ├── Sources │ │ ├── da2.v │ │ ├── interfaces │ │ │ └── SPI │ │ │ │ ├── SPI.xml │ │ │ │ └── SPI_rtl.xml │ │ └── ip_repo │ │ │ └── da2_1.0 │ │ │ ├── LICENCE │ │ │ ├── bd │ │ │ └── bd.tcl │ │ │ ├── component.xml │ │ │ ├── drivers │ │ │ └── da2_v1_0 │ │ │ │ ├── data │ │ │ │ ├── da2.mdd │ │ │ │ └── da2.tcl │ │ │ │ └── src │ │ │ │ ├── LICENCE │ │ │ │ ├── Makefile │ │ │ │ ├── da2.cpp │ │ │ │ └── da2.h │ │ │ ├── hdl │ │ │ └── da2_v1_0.v │ │ │ ├── sim │ │ │ ├── sim.gtkw │ │ │ ├── sources.txt │ │ │ └── tb.v │ │ │ └── xgui │ │ │ └── da2_v1_0.tcl │ └── Test │ │ ├── Basys3.xdc │ │ └── test.v ├── DPOT │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim.v │ ├── Sources │ │ ├── dpot.v │ │ ├── interfaces │ │ │ └── SPI │ │ │ │ ├── SPI.xml │ │ │ │ └── SPI_rtl.xml │ │ └── ip_repo │ │ │ └── dpot_1.0 │ │ │ ├── LICENCE │ │ │ ├── bd │ │ │ └── bd.tcl │ │ │ ├── component.xml │ │ │ ├── drivers │ │ │ └── dpot_v1_0 │ │ │ │ ├── data │ │ │ │ ├── dpot.mdd │ │ │ │ └── dpot.tcl │ │ │ │ └── src │ │ │ │ ├── LICENCE │ │ │ │ ├── Makefile │ │ │ │ ├── dpot.cpp │ │ │ │ └── dpot.h │ │ │ ├── hdl │ │ │ └── dpot_v1_0.v │ │ │ ├── sim │ │ │ ├── sim.gtkw │ │ │ ├── sources.txt │ │ │ └── tb.v │ │ │ └── xgui │ │ │ └── dpot_v1_0.tcl │ └── Test │ │ ├── Basys3.xdc │ │ └── board.v ├── ENC │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim.v │ ├── Sources │ │ └── enc.v │ └── Test │ │ ├── Basys3.xdc │ │ └── test.v ├── HB3 │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim_hb3.v │ ├── Sources │ │ └── hb3.v │ └── Test │ │ └── Basys3.xdc ├── HYGRO │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── fullsim.v │ ├── Sources │ │ └── hygro.v │ └── Test │ │ ├── Basys3_full.xdc │ │ ├── Basys3_lite.xdc │ │ ├── testBoard_full.v │ │ └── test_board.v ├── KYPD │ ├── LICENCE │ ├── README.md │ ├── Sources │ │ └── kypd.v │ └── Test │ │ ├── Basys3.xdc │ │ └── kypdTest.v ├── MIC3 │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim.v │ ├── Sources │ │ └── mic3.v │ └── Test │ │ ├── Basys3_Master.xdc │ │ ├── Basys3_da_test.xdc │ │ ├── testBoard_dacOut.v │ │ └── test_board.v ├── OLED │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── oled_sim.v │ ├── Sources │ │ ├── oled.v │ │ └── oled_decoders.v │ └── Test │ │ ├── Arty-A7-100.xdc │ │ ├── Basys3.xdc │ │ ├── design_1.tcl │ │ ├── design_oled_demo.tcl │ │ ├── oled_bitmap_test.v │ │ ├── oled_demo.v │ │ └── oled_test.v ├── TC1 │ ├── LICENCE │ ├── README.md │ ├── Simulation │ │ └── sim.v │ ├── Sources │ │ ├── ip_repo │ │ │ └── tc1_1.0 │ │ │ │ ├── bd │ │ │ │ └── bd.tcl │ │ │ │ ├── component.xml │ │ │ │ ├── drivers │ │ │ │ └── tc1_v1_0 │ │ │ │ │ ├── data │ │ │ │ │ ├── tc1.mdd │ │ │ │ │ └── tc1.tcl │ │ │ │ │ └── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── tc1.cpp │ │ │ │ │ └── tc1.h │ │ │ │ ├── hdl │ │ │ │ └── tc1_v1_0.v │ │ │ │ ├── sim │ │ │ │ ├── sources.txt │ │ │ │ ├── tb.v │ │ │ │ └── wave.gtkw │ │ │ │ └── xgui │ │ │ │ └── tc1_v1_0.tcl │ │ └── tc1.v │ └── Test │ │ ├── Basys3.xdc │ │ └── tc1_test_module.v ├── TMP2 │ ├── LICENCE │ ├── README.md │ ├── Sources │ │ └── tmp2.v │ └── Test │ │ ├── Basys3.xdc │ │ ├── design_tmp2_test.tcl │ │ └── tester_tmp2.v └── TMP3 │ ├── LICENCE │ ├── README.md │ ├── Sources │ └── tmp3.v │ └── Test │ ├── Basys3.xdc │ ├── design_1.tcl │ └── tester_tmp3.v ├── README.md └── Utils ├── IOBUF.v ├── btn_debouncer.v ├── clkGenParam.v ├── clk_div.v ├── rgb_led_pwm.v ├── ssd_util.v ├── tribuff.v ├── uart.v └── uart_clock.v /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/LICENCE -------------------------------------------------------------------------------- /Pmods/AD1/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/LICENCE -------------------------------------------------------------------------------- /Pmods/AD1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/README.md -------------------------------------------------------------------------------- /Pmods/AD1/Simulation/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Simulation/sim.v -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ad1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ad1.v -------------------------------------------------------------------------------- /Pmods/AD1/Sources/interfaces/SPI/SPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/interfaces/SPI/SPI.xml -------------------------------------------------------------------------------- /Pmods/AD1/Sources/interfaces/SPI/SPI_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/interfaces/SPI/SPI_rtl.xml -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/LICENCE -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/component.xml -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/data/ad1.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/data/ad1.mdd -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/data/ad1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/data/ad1.tcl -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/LICENCE -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/Makefile -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/ad1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/ad1.cpp -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/ad1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/drivers/ad1_v1_0/src/ad1.h -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/hdl/ad1_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/hdl/ad1_v1_0.v -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/sim/sim.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/sim/sim.gtkw -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/sim/sources.txt: -------------------------------------------------------------------------------- 1 | # Source List for iVerilog 2 | hdl/ad1_v1_0.v 3 | -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/sim/tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/sim/tb.v -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/xgui/ad1_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/xgui/ad1_v1_0.tcl -------------------------------------------------------------------------------- /Pmods/AD1/Sources/ip_repo/ad1_1.0/xgui/ad1_v1_0_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Sources/ip_repo/ad1_1.0/xgui/ad1_v1_0_v1_0.tcl -------------------------------------------------------------------------------- /Pmods/AD1/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/AD1/Test/test_board.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/AD1/Test/test_board.v -------------------------------------------------------------------------------- /Pmods/CMPS2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CMPS2/LICENCE -------------------------------------------------------------------------------- /Pmods/CMPS2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CMPS2/README.md -------------------------------------------------------------------------------- /Pmods/CMPS2/Sources/cmps2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CMPS2/Sources/cmps2.v -------------------------------------------------------------------------------- /Pmods/CMPS2/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CMPS2/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/CMPS2/Test/block_design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CMPS2/Test/block_design.tcl -------------------------------------------------------------------------------- /Pmods/CMPS2/Test/cmps2_tester.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CMPS2/Test/cmps2_tester.v -------------------------------------------------------------------------------- /Pmods/COLOR/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/COLOR/LICENCE -------------------------------------------------------------------------------- /Pmods/COLOR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/COLOR/README.md -------------------------------------------------------------------------------- /Pmods/COLOR/Sources/color.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/COLOR/Sources/color.v -------------------------------------------------------------------------------- /Pmods/COLOR/Test/Arty-A7-100-0.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/COLOR/Test/Arty-A7-100-0.xdc -------------------------------------------------------------------------------- /Pmods/COLOR/Test/color_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/COLOR/Test/color_test.v -------------------------------------------------------------------------------- /Pmods/CON3/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/LICENCE -------------------------------------------------------------------------------- /Pmods/CON3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/README.md -------------------------------------------------------------------------------- /Pmods/CON3/Simulation/con3_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/Simulation/con3_sim.v -------------------------------------------------------------------------------- /Pmods/CON3/Sources/con3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/Sources/con3.v -------------------------------------------------------------------------------- /Pmods/CON3/Test/Arty-A7-100.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/Test/Arty-A7-100.xdc -------------------------------------------------------------------------------- /Pmods/CON3/Test/con3_tester.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/Test/con3_tester.v -------------------------------------------------------------------------------- /Pmods/CON3/Test/design_con3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/CON3/Test/design_con3.tcl -------------------------------------------------------------------------------- /Pmods/DA2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/LICENCE -------------------------------------------------------------------------------- /Pmods/DA2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/README.md -------------------------------------------------------------------------------- /Pmods/DA2/Simulation/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Simulation/sim.v -------------------------------------------------------------------------------- /Pmods/DA2/Sources/da2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/da2.v -------------------------------------------------------------------------------- /Pmods/DA2/Sources/interfaces/SPI/SPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/interfaces/SPI/SPI.xml -------------------------------------------------------------------------------- /Pmods/DA2/Sources/interfaces/SPI/SPI_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/interfaces/SPI/SPI_rtl.xml -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/LICENCE -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/component.xml -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/data/da2.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/data/da2.mdd -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/data/da2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/data/da2.tcl -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/LICENCE -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/Makefile -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/da2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/da2.cpp -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/da2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/drivers/da2_v1_0/src/da2.h -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/hdl/da2_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/hdl/da2_v1_0.v -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/sim/sim.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/sim/sim.gtkw -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/sim/sources.txt: -------------------------------------------------------------------------------- 1 | # Source List for iVerilog 2 | hdl/da2_v1_0.v 3 | -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/sim/tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/sim/tb.v -------------------------------------------------------------------------------- /Pmods/DA2/Sources/ip_repo/da2_1.0/xgui/da2_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Sources/ip_repo/da2_1.0/xgui/da2_v1_0.tcl -------------------------------------------------------------------------------- /Pmods/DA2/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/DA2/Test/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DA2/Test/test.v -------------------------------------------------------------------------------- /Pmods/DPOT/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/LICENCE -------------------------------------------------------------------------------- /Pmods/DPOT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/README.md -------------------------------------------------------------------------------- /Pmods/DPOT/Simulation/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Simulation/sim.v -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/dpot.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/dpot.v -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/interfaces/SPI/SPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/interfaces/SPI/SPI.xml -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/interfaces/SPI/SPI_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/interfaces/SPI/SPI_rtl.xml -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/LICENCE -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/component.xml -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/data/dpot.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/data/dpot.mdd -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/data/dpot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/data/dpot.tcl -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/LICENCE -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/Makefile -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/dpot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/dpot.cpp -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/dpot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/drivers/dpot_v1_0/src/dpot.h -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/hdl/dpot_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/hdl/dpot_v1_0.v -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/sim/sim.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/sim/sim.gtkw -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/sim/sources.txt: -------------------------------------------------------------------------------- 1 | # Source List for iVerilog 2 | hdl/dpot_v1_0.v -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/sim/tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/sim/tb.v -------------------------------------------------------------------------------- /Pmods/DPOT/Sources/ip_repo/dpot_1.0/xgui/dpot_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Sources/ip_repo/dpot_1.0/xgui/dpot_v1_0.tcl -------------------------------------------------------------------------------- /Pmods/DPOT/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/DPOT/Test/board.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/DPOT/Test/board.v -------------------------------------------------------------------------------- /Pmods/ENC/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/ENC/LICENCE -------------------------------------------------------------------------------- /Pmods/ENC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/ENC/README.md -------------------------------------------------------------------------------- /Pmods/ENC/Simulation/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/ENC/Simulation/sim.v -------------------------------------------------------------------------------- /Pmods/ENC/Sources/enc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/ENC/Sources/enc.v -------------------------------------------------------------------------------- /Pmods/ENC/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/ENC/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/ENC/Test/test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/ENC/Test/test.v -------------------------------------------------------------------------------- /Pmods/HB3/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HB3/LICENCE -------------------------------------------------------------------------------- /Pmods/HB3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HB3/README.md -------------------------------------------------------------------------------- /Pmods/HB3/Simulation/sim_hb3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HB3/Simulation/sim_hb3.v -------------------------------------------------------------------------------- /Pmods/HB3/Sources/hb3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HB3/Sources/hb3.v -------------------------------------------------------------------------------- /Pmods/HB3/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HB3/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/HYGRO/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/LICENCE -------------------------------------------------------------------------------- /Pmods/HYGRO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/README.md -------------------------------------------------------------------------------- /Pmods/HYGRO/Simulation/fullsim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/Simulation/fullsim.v -------------------------------------------------------------------------------- /Pmods/HYGRO/Sources/hygro.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/Sources/hygro.v -------------------------------------------------------------------------------- /Pmods/HYGRO/Test/Basys3_full.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/Test/Basys3_full.xdc -------------------------------------------------------------------------------- /Pmods/HYGRO/Test/Basys3_lite.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/Test/Basys3_lite.xdc -------------------------------------------------------------------------------- /Pmods/HYGRO/Test/testBoard_full.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/Test/testBoard_full.v -------------------------------------------------------------------------------- /Pmods/HYGRO/Test/test_board.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/HYGRO/Test/test_board.v -------------------------------------------------------------------------------- /Pmods/KYPD/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/KYPD/LICENCE -------------------------------------------------------------------------------- /Pmods/KYPD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/KYPD/README.md -------------------------------------------------------------------------------- /Pmods/KYPD/Sources/kypd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/KYPD/Sources/kypd.v -------------------------------------------------------------------------------- /Pmods/KYPD/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/KYPD/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/KYPD/Test/kypdTest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/KYPD/Test/kypdTest.v -------------------------------------------------------------------------------- /Pmods/MIC3/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/LICENCE -------------------------------------------------------------------------------- /Pmods/MIC3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/README.md -------------------------------------------------------------------------------- /Pmods/MIC3/Simulation/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/Simulation/sim.v -------------------------------------------------------------------------------- /Pmods/MIC3/Sources/mic3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/Sources/mic3.v -------------------------------------------------------------------------------- /Pmods/MIC3/Test/Basys3_Master.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/Test/Basys3_Master.xdc -------------------------------------------------------------------------------- /Pmods/MIC3/Test/Basys3_da_test.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/Test/Basys3_da_test.xdc -------------------------------------------------------------------------------- /Pmods/MIC3/Test/testBoard_dacOut.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/Test/testBoard_dacOut.v -------------------------------------------------------------------------------- /Pmods/MIC3/Test/test_board.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/MIC3/Test/test_board.v -------------------------------------------------------------------------------- /Pmods/OLED/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/LICENCE -------------------------------------------------------------------------------- /Pmods/OLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/README.md -------------------------------------------------------------------------------- /Pmods/OLED/Simulation/oled_sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Simulation/oled_sim.v -------------------------------------------------------------------------------- /Pmods/OLED/Sources/oled.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Sources/oled.v -------------------------------------------------------------------------------- /Pmods/OLED/Sources/oled_decoders.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Sources/oled_decoders.v -------------------------------------------------------------------------------- /Pmods/OLED/Test/Arty-A7-100.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/Arty-A7-100.xdc -------------------------------------------------------------------------------- /Pmods/OLED/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/OLED/Test/design_1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/design_1.tcl -------------------------------------------------------------------------------- /Pmods/OLED/Test/design_oled_demo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/design_oled_demo.tcl -------------------------------------------------------------------------------- /Pmods/OLED/Test/oled_bitmap_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/oled_bitmap_test.v -------------------------------------------------------------------------------- /Pmods/OLED/Test/oled_demo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/oled_demo.v -------------------------------------------------------------------------------- /Pmods/OLED/Test/oled_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/OLED/Test/oled_test.v -------------------------------------------------------------------------------- /Pmods/TC1/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/LICENCE -------------------------------------------------------------------------------- /Pmods/TC1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/README.md -------------------------------------------------------------------------------- /Pmods/TC1/Simulation/sim.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Simulation/sim.v -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/component.xml -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/data/tc1.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/data/tc1.mdd -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/data/tc1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/data/tc1.tcl -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/src/Makefile -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/src/tc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/src/tc1.cpp -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/src/tc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/drivers/tc1_v1_0/src/tc1.h -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/hdl/tc1_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/hdl/tc1_v1_0.v -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/sim/sources.txt: -------------------------------------------------------------------------------- 1 | # Source List for iVerilog 2 | hdl/tc1_v1_0.v 3 | -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/sim/tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/sim/tb.v -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/sim/wave.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/sim/wave.gtkw -------------------------------------------------------------------------------- /Pmods/TC1/Sources/ip_repo/tc1_1.0/xgui/tc1_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/ip_repo/tc1_1.0/xgui/tc1_v1_0.tcl -------------------------------------------------------------------------------- /Pmods/TC1/Sources/tc1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Sources/tc1.v -------------------------------------------------------------------------------- /Pmods/TC1/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/TC1/Test/tc1_test_module.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TC1/Test/tc1_test_module.v -------------------------------------------------------------------------------- /Pmods/TMP2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP2/LICENCE -------------------------------------------------------------------------------- /Pmods/TMP2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP2/README.md -------------------------------------------------------------------------------- /Pmods/TMP2/Sources/tmp2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP2/Sources/tmp2.v -------------------------------------------------------------------------------- /Pmods/TMP2/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP2/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/TMP2/Test/design_tmp2_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP2/Test/design_tmp2_test.tcl -------------------------------------------------------------------------------- /Pmods/TMP2/Test/tester_tmp2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP2/Test/tester_tmp2.v -------------------------------------------------------------------------------- /Pmods/TMP3/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP3/LICENCE -------------------------------------------------------------------------------- /Pmods/TMP3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP3/README.md -------------------------------------------------------------------------------- /Pmods/TMP3/Sources/tmp3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP3/Sources/tmp3.v -------------------------------------------------------------------------------- /Pmods/TMP3/Test/Basys3.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP3/Test/Basys3.xdc -------------------------------------------------------------------------------- /Pmods/TMP3/Test/design_1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP3/Test/design_1.tcl -------------------------------------------------------------------------------- /Pmods/TMP3/Test/tester_tmp3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Pmods/TMP3/Test/tester_tmp3.v -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/README.md -------------------------------------------------------------------------------- /Utils/IOBUF.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/IOBUF.v -------------------------------------------------------------------------------- /Utils/btn_debouncer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/btn_debouncer.v -------------------------------------------------------------------------------- /Utils/clkGenParam.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/clkGenParam.v -------------------------------------------------------------------------------- /Utils/clk_div.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/clk_div.v -------------------------------------------------------------------------------- /Utils/rgb_led_pwm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/rgb_led_pwm.v -------------------------------------------------------------------------------- /Utils/ssd_util.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/ssd_util.v -------------------------------------------------------------------------------- /Utils/tribuff.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/tribuff.v -------------------------------------------------------------------------------- /Utils/uart.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/uart.v -------------------------------------------------------------------------------- /Utils/uart_clock.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suoglu/Pmod/HEAD/Utils/uart_clock.v --------------------------------------------------------------------------------