module wandwor_test0 (A, B, C, D, X, Y, Z); input A, B, C, D; output wor X; output wand Y; output Z; assign X = A, X = B, Y = C, Y = D; wandwor_foo foo_0 (C, D, X); wandwor_foo foo_1 (A, B, Y); wandwor_foo foo_2 (X, Y, Z); endmodule module wandwor_test1 (A, B, C, D, X, Y, Z); input [3:0] A, B, C, D; output wor [3:0] X; output wand [3:0] Y; output Z; wandwor_bar bar_inst ( .I0({A, B}), .I1({B, A}), .O({X, Y}) ); assign X = C, X = D; assign Y = C, Y = D; assign Z = ^{X,Y}; endmodule module wandwor_foo(input I0, I1, output O); assign O = I0 ^ I1; endmodule module wandwor_bar(input [7:0] I0, I1, output [7:0] O); assign O = I0 + I1; endmodule /> index : avr/qmk/firmware
[no description]
aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/niu_mini/config.h
blob: be94fd9e7bdf7f83f547221a53ccf6afa3511c9d (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86