module constpower(ys, yu); output [8*8*8-1:0] ys, yu; genvar i, j; generate for (i = 0; i < 8; i = i+1) for (j = 0; j < 8; j = j+1) begin:V assign ys[i*8 + j*64 + 7 : i*8 + j*64] = $signed(i-4) ** $signed(j-4); assign yu[i*8 + j*64 + 7 : i*8 + j*64] = $unsigned(i) ** $unsigned(j); end endgenerate endmodule ceas.org/iCE40/ghdl' title='iCE40/ghdl Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/nodes_meta.ads.in
blob: 18e7dca29b54efd01578651fca548f611491fbf0 (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