testing clock unification

This commit is contained in:
Antoine Grimod 2022-12-16 14:51:39 +01:00
parent ed54fd0114
commit aa84a07902

View File

@ -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