module test(input D, C, R, output reg Q); always @(posedge C, posedge R) if (R) Q <= 0; else Q <= D; endmodule rel='alternate' title='Atom feed' href='http://git.panaceas.org/cgit.cgi/iCE40/ghdl/atom/testsuite/gna/bug090/crash1.vhdl?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug090/crash1.vhdl
blob: 8be6cc38240eb88e1312c04274f202df5026458f (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