SPI slave from https://www.fpga4fun.com/SPI2.html
[trilby-hat-fpga] / led.v
1 module top(
2                 output green_led_d7,
3                 output orange_led_d8,
4                 output red_led_d5,
5                 output yellow_led_d6
6         );
7         assign green_led_d7  = 1;
8         assign orange_led_d8 = 1;
9         assign red_led_d5    = 1;
10         assign yellow_led_d6 = 1;
11
12 endmodule