├── .gitattributes ├── .gitmodules ├── LICENSE.md ├── Readme.md ├── hdl ├── fpga │ ├── pll_12_126.v │ ├── pll_16_126.v │ ├── smoldvi_fpga_icebreaker.f │ ├── smoldvi_fpga_icebreaker.v │ ├── smoldvi_fpga_icestick.f │ ├── smoldvi_fpga_icestick.v │ ├── smoldvi_fpga_icesugar.f │ ├── smoldvi_fpga_icesugar.v │ ├── smoldvi_fpga_tinyfpga_bx.f │ └── smoldvi_fpga_tinyfpga_bx.v └── smoldvi │ ├── smoldvi.f │ ├── smoldvi.v │ ├── smoldvi_clock_driver.v │ ├── smoldvi_fast_gearbox.v │ ├── smoldvi_serialiser.v │ ├── smoldvi_timing.v │ └── smoldvi_tmds_encode.v ├── sourceme └── synth ├── .gitignore ├── Icebreaker.mk ├── Icestick.mk ├── Icesugar.mk ├── Makefile ├── TinyFPGA_BX.mk ├── smoldvi_icebreaker.pcf ├── smoldvi_icebreaker_prepack.py ├── smoldvi_icestick.pcf ├── smoldvi_icesugar.pcf └── smoldvi_tinyfpga_bx.pcf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/Readme.md -------------------------------------------------------------------------------- /hdl/fpga/pll_12_126.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/pll_12_126.v -------------------------------------------------------------------------------- /hdl/fpga/pll_16_126.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/pll_16_126.v -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_icebreaker.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_icebreaker.f -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_icebreaker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_icebreaker.v -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_icestick.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_icestick.f -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_icestick.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_icestick.v -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_icesugar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_icesugar.f -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_icesugar.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_icesugar.v -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_tinyfpga_bx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_tinyfpga_bx.f -------------------------------------------------------------------------------- /hdl/fpga/smoldvi_fpga_tinyfpga_bx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/fpga/smoldvi_fpga_tinyfpga_bx.v -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi.f -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi.v -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi_clock_driver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi_clock_driver.v -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi_fast_gearbox.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi_fast_gearbox.v -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi_serialiser.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi_serialiser.v -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi_timing.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi_timing.v -------------------------------------------------------------------------------- /hdl/smoldvi/smoldvi_tmds_encode.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/hdl/smoldvi/smoldvi_tmds_encode.v -------------------------------------------------------------------------------- /sourceme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/sourceme -------------------------------------------------------------------------------- /synth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/.gitignore -------------------------------------------------------------------------------- /synth/Icebreaker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/Icebreaker.mk -------------------------------------------------------------------------------- /synth/Icestick.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/Icestick.mk -------------------------------------------------------------------------------- /synth/Icesugar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/Icesugar.mk -------------------------------------------------------------------------------- /synth/Makefile: -------------------------------------------------------------------------------- 1 | Icebreaker.mk -------------------------------------------------------------------------------- /synth/TinyFPGA_BX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/TinyFPGA_BX.mk -------------------------------------------------------------------------------- /synth/smoldvi_icebreaker.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/smoldvi_icebreaker.pcf -------------------------------------------------------------------------------- /synth/smoldvi_icebreaker_prepack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/smoldvi_icebreaker_prepack.py -------------------------------------------------------------------------------- /synth/smoldvi_icestick.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/smoldvi_icestick.pcf -------------------------------------------------------------------------------- /synth/smoldvi_icesugar.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/smoldvi_icesugar.pcf -------------------------------------------------------------------------------- /synth/smoldvi_tinyfpga_bx.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wren6991/SmolDVI/HEAD/synth/smoldvi_tinyfpga_bx.pcf --------------------------------------------------------------------------------