projects
/
trilby-hat-fpga
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
better describe LTC2226CUH 12 bits
[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