// Modified from: // https://github.com/tinyfpga/TinyFPGA-A-Series/tree/master/template_a2 module top ( (* LOC="13" *) output pin1, (* LOC="21" *) input clk ); reg [23:0] led_timer; always @(posedge clk) begin led_timer <= led_timer + 1; end // left side of board assign pin1 = led_timer[23]; endmodule g/iCE40/yosys' title='iCE40/yosys Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cxx-api/evaldemo.cc
blob: 34373487d3eef9f2ab04e79b43af153ad9bb2094 (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