module sumprod(a, b, c, sum, prod); input [7:0] a, b, c; output [7:0] sum, prod; {* sumstuff *} assign sum = a + b + c; {* *} assign prod = a * b * c; endmodule e' title='Atom feed' href='http://openwrt.panaceas.org/cgit/avr/qmk/firmware/atom/quantum/rgb_matrix_animations/cycle_out_in_anim.h?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/rgb_matrix_animations/cycle_out_in_anim.h
blob: dc9d09fd3fa7c54d11bb3e3dfe498fc8f208d1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23