testing clock unification
This commit is contained in:
parent
ed54fd0114
commit
aa84a07902
@ -2,3 +2,12 @@ node main (i: int) returns (o1: int);
|
|||||||
let
|
let
|
||||||
o1 = 10 -> pre (20 -> 30);
|
o1 = 10 -> pre (20 -> 30);
|
||||||
tel
|
tel
|
||||||
|
|
||||||
|
node flipflop(i: int) returns (z: int);
|
||||||
|
var x, y: int; c: bool;
|
||||||
|
let
|
||||||
|
c = true fby (not c);
|
||||||
|
x = 1 on c;
|
||||||
|
y = 2 on (not c);
|
||||||
|
z = merge c x y;
|
||||||
|
tel
|
||||||
|
Loading…
Reference in New Issue
Block a user