module test(input clk, a, b, c, output reg y); reg [2:0] q1, q2; always @(posedge clk) begin q1 <= { a, b, c }; q2 <= q1; y <= ^q2; end endmodule href='http://openwrt.panaceas.org/cgit/openwrt/upstream/atom/target/linux/uml/Makefile?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/uml/Makefile
blob: d8bfcef3f5316c9432ed2386c9dfbf352ce53bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36