module top(input clk, rst, output [7:0] leds); // TODO: Test miter circuit without reset value. SAT and SMT diverge without // reset value (SAT succeeds, SMT fails). I haven't figured out the correct // init set of options to make SAT fail. // "sat -verify -prove-asserts -set-init-def -seq 1 miter" causes assertion // failure in yosys. reg [7:0] ctr = 8'h00; always @(posedge clk) if (rst) ctr <= 8'h00; else ctr <= ctr + 1'b1; assign leds = ctr; endmodule alculation-problem-221.patch?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-4.14/950-0200-bcm2835-camera-Fix-timestamp-calculation-problem-221.patch
blob: 9da6ac4642de7f5a8eb89dac922acdecad681ea6 (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
87
88
89
90
91
92
93
94
95
96
97