├── .gitattributes ├── .gitignore ├── README ├── contrib ├── AppIcon.ico ├── photos │ ├── demo_adafruit.jpg │ ├── demo_firefox.jpg │ ├── demo_google.jpg │ └── demo_nyan.jpg └── tutorial │ ├── assignmenteditor.png │ ├── gpio0diagram.png │ ├── hardwaresetup.png │ ├── importassignments.png │ ├── newproject1.png │ ├── newproject2.png │ ├── newproject3.png │ ├── newproject4.png │ ├── nohardware.png │ ├── pintristate.png │ ├── programmer.png │ ├── tutorial.html │ ├── vjtagserver.png │ └── voltage.png ├── de0-nano ├── DE0_Nano.qsf ├── program.cmd └── rgbmatrix-fpga.qsf ├── processing ├── Chaser │ ├── Chaser.pde │ └── vjtag_client.pde └── Magnify │ ├── Magnify.pde │ └── vjtag_client.pde ├── tcl ├── Useful links.txt ├── run.cmd └── vjtag_server.tcl └── vhdl ├── clk_div.vhd ├── config.vhd ├── jtag_iface.vhd ├── ledctrl.vhd ├── megawizard ├── megawizard_vjtag.cmp ├── megawizard_vjtag.qip ├── megawizard_vjtag.vhd └── megawizard_vjtag_inst.vhd ├── memory.vhd ├── testbenches ├── ledctrl_tb.vhd ├── memory_tb.vhd └── testbench.vhd └── top_level.vhd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/README -------------------------------------------------------------------------------- /contrib/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/AppIcon.ico -------------------------------------------------------------------------------- /contrib/photos/demo_adafruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/photos/demo_adafruit.jpg -------------------------------------------------------------------------------- /contrib/photos/demo_firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/photos/demo_firefox.jpg -------------------------------------------------------------------------------- /contrib/photos/demo_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/photos/demo_google.jpg -------------------------------------------------------------------------------- /contrib/photos/demo_nyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/photos/demo_nyan.jpg -------------------------------------------------------------------------------- /contrib/tutorial/assignmenteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/assignmenteditor.png -------------------------------------------------------------------------------- /contrib/tutorial/gpio0diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/gpio0diagram.png -------------------------------------------------------------------------------- /contrib/tutorial/hardwaresetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/hardwaresetup.png -------------------------------------------------------------------------------- /contrib/tutorial/importassignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/importassignments.png -------------------------------------------------------------------------------- /contrib/tutorial/newproject1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/newproject1.png -------------------------------------------------------------------------------- /contrib/tutorial/newproject2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/newproject2.png -------------------------------------------------------------------------------- /contrib/tutorial/newproject3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/newproject3.png -------------------------------------------------------------------------------- /contrib/tutorial/newproject4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/newproject4.png -------------------------------------------------------------------------------- /contrib/tutorial/nohardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/nohardware.png -------------------------------------------------------------------------------- /contrib/tutorial/pintristate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/pintristate.png -------------------------------------------------------------------------------- /contrib/tutorial/programmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/programmer.png -------------------------------------------------------------------------------- /contrib/tutorial/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/tutorial.html -------------------------------------------------------------------------------- /contrib/tutorial/vjtagserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/vjtagserver.png -------------------------------------------------------------------------------- /contrib/tutorial/voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/contrib/tutorial/voltage.png -------------------------------------------------------------------------------- /de0-nano/DE0_Nano.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/de0-nano/DE0_Nano.qsf -------------------------------------------------------------------------------- /de0-nano/program.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/de0-nano/program.cmd -------------------------------------------------------------------------------- /de0-nano/rgbmatrix-fpga.qsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/de0-nano/rgbmatrix-fpga.qsf -------------------------------------------------------------------------------- /processing/Chaser/Chaser.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/processing/Chaser/Chaser.pde -------------------------------------------------------------------------------- /processing/Chaser/vjtag_client.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/processing/Chaser/vjtag_client.pde -------------------------------------------------------------------------------- /processing/Magnify/Magnify.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/processing/Magnify/Magnify.pde -------------------------------------------------------------------------------- /processing/Magnify/vjtag_client.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/processing/Magnify/vjtag_client.pde -------------------------------------------------------------------------------- /tcl/Useful links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/tcl/Useful links.txt -------------------------------------------------------------------------------- /tcl/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/tcl/run.cmd -------------------------------------------------------------------------------- /tcl/vjtag_server.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/tcl/vjtag_server.tcl -------------------------------------------------------------------------------- /vhdl/clk_div.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/clk_div.vhd -------------------------------------------------------------------------------- /vhdl/config.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/config.vhd -------------------------------------------------------------------------------- /vhdl/jtag_iface.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/jtag_iface.vhd -------------------------------------------------------------------------------- /vhdl/ledctrl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/ledctrl.vhd -------------------------------------------------------------------------------- /vhdl/megawizard/megawizard_vjtag.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/megawizard/megawizard_vjtag.cmp -------------------------------------------------------------------------------- /vhdl/megawizard/megawizard_vjtag.qip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/megawizard/megawizard_vjtag.qip -------------------------------------------------------------------------------- /vhdl/megawizard/megawizard_vjtag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/megawizard/megawizard_vjtag.vhd -------------------------------------------------------------------------------- /vhdl/megawizard/megawizard_vjtag_inst.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/megawizard/megawizard_vjtag_inst.vhd -------------------------------------------------------------------------------- /vhdl/memory.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/memory.vhd -------------------------------------------------------------------------------- /vhdl/testbenches/ledctrl_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/testbenches/ledctrl_tb.vhd -------------------------------------------------------------------------------- /vhdl/testbenches/memory_tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/testbenches/memory_tb.vhd -------------------------------------------------------------------------------- /vhdl/testbenches/testbench.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/testbenches/testbench.vhd -------------------------------------------------------------------------------- /vhdl/top_level.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/rgbmatrix-fpga/HEAD/vhdl/top_level.vhd --------------------------------------------------------------------------------