├── .gitmodules ├── LICENSE ├── Makefile ├── README ├── bin ├── la16fw-fpga-18.bitstream ├── la16fw-fpga-33.bitstream └── la16fw-fx2.fw ├── clock.vhd ├── clockmux.vhd ├── fifo.vhd ├── fx2 ├── Makefile ├── debug.h ├── debug_i2c.c ├── dscr.a51 ├── fpga.c ├── fpga.h ├── fw.c ├── gpif_stuff.c ├── gpif_stuff.h └── logic16.c ├── input_shiftreg.vhd ├── led.vhd ├── logic16.xise ├── main.ucf ├── mainmodule.prj ├── mainmodule.ut ├── mainmodule.vhd ├── mainmodule.xst ├── sample.vhd ├── spi.vhd ├── syncflag.vhd ├── syncsignal.vhd ├── test_clockmux.vhd ├── test_fifo.vhd ├── test_main.vhd ├── test_mainmodule.vhd └── test_sample.vhd /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/README -------------------------------------------------------------------------------- /bin/la16fw-fpga-18.bitstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/bin/la16fw-fpga-18.bitstream -------------------------------------------------------------------------------- /bin/la16fw-fpga-33.bitstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/bin/la16fw-fpga-33.bitstream -------------------------------------------------------------------------------- /bin/la16fw-fx2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/bin/la16fw-fx2.fw -------------------------------------------------------------------------------- /clock.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/clock.vhd -------------------------------------------------------------------------------- /clockmux.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/clockmux.vhd -------------------------------------------------------------------------------- /fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fifo.vhd -------------------------------------------------------------------------------- /fx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/Makefile -------------------------------------------------------------------------------- /fx2/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/debug.h -------------------------------------------------------------------------------- /fx2/debug_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/debug_i2c.c -------------------------------------------------------------------------------- /fx2/dscr.a51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/dscr.a51 -------------------------------------------------------------------------------- /fx2/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/fpga.c -------------------------------------------------------------------------------- /fx2/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/fpga.h -------------------------------------------------------------------------------- /fx2/fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/fw.c -------------------------------------------------------------------------------- /fx2/gpif_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/gpif_stuff.c -------------------------------------------------------------------------------- /fx2/gpif_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/gpif_stuff.h -------------------------------------------------------------------------------- /fx2/logic16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/fx2/logic16.c -------------------------------------------------------------------------------- /input_shiftreg.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/input_shiftreg.vhd -------------------------------------------------------------------------------- /led.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/led.vhd -------------------------------------------------------------------------------- /logic16.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/logic16.xise -------------------------------------------------------------------------------- /main.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/main.ucf -------------------------------------------------------------------------------- /mainmodule.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/mainmodule.prj -------------------------------------------------------------------------------- /mainmodule.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/mainmodule.ut -------------------------------------------------------------------------------- /mainmodule.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/mainmodule.vhd -------------------------------------------------------------------------------- /mainmodule.xst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/mainmodule.xst -------------------------------------------------------------------------------- /sample.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/sample.vhd -------------------------------------------------------------------------------- /spi.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/spi.vhd -------------------------------------------------------------------------------- /syncflag.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/syncflag.vhd -------------------------------------------------------------------------------- /syncsignal.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/syncsignal.vhd -------------------------------------------------------------------------------- /test_clockmux.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/test_clockmux.vhd -------------------------------------------------------------------------------- /test_fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/test_fifo.vhd -------------------------------------------------------------------------------- /test_main.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/test_main.vhd -------------------------------------------------------------------------------- /test_mainmodule.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/test_mainmodule.vhd -------------------------------------------------------------------------------- /test_sample.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregani/la16fw/HEAD/test_sample.vhd --------------------------------------------------------------------------------