├── HDL ├── SPI_LCD.ucf ├── SPI_LCD.v ├── clk_div.v ├── key_ctrl.v ├── key_encoder.v ├── key_latch.v ├── key_scanner.v ├── keypad.v ├── lcd_ctrl.v ├── spi_ctrl.v ├── spi_master.v ├── spi_shift.v └── synchronizer.v ├── README.md └── Simulation ├── test_SPI_LCD.v ├── test_clk_div.v ├── test_spi_master.v └── test_synchronizer.v /HDL/SPI_LCD.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/SPI_LCD.ucf -------------------------------------------------------------------------------- /HDL/SPI_LCD.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/SPI_LCD.v -------------------------------------------------------------------------------- /HDL/clk_div.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/clk_div.v -------------------------------------------------------------------------------- /HDL/key_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/key_ctrl.v -------------------------------------------------------------------------------- /HDL/key_encoder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/key_encoder.v -------------------------------------------------------------------------------- /HDL/key_latch.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/key_latch.v -------------------------------------------------------------------------------- /HDL/key_scanner.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/key_scanner.v -------------------------------------------------------------------------------- /HDL/keypad.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/keypad.v -------------------------------------------------------------------------------- /HDL/lcd_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/lcd_ctrl.v -------------------------------------------------------------------------------- /HDL/spi_ctrl.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/spi_ctrl.v -------------------------------------------------------------------------------- /HDL/spi_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/spi_master.v -------------------------------------------------------------------------------- /HDL/spi_shift.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/spi_shift.v -------------------------------------------------------------------------------- /HDL/synchronizer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/HDL/synchronizer.v -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/README.md -------------------------------------------------------------------------------- /Simulation/test_SPI_LCD.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/Simulation/test_SPI_LCD.v -------------------------------------------------------------------------------- /Simulation/test_clk_div.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/Simulation/test_clk_div.v -------------------------------------------------------------------------------- /Simulation/test_spi_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/Simulation/test_spi_master.v -------------------------------------------------------------------------------- /Simulation/test_synchronizer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrade824/Verilog-SPI-Master/HEAD/Simulation/test_synchronizer.v --------------------------------------------------------------------------------