kesterel2lustre

compile Kernel Esterel to Lustre
git clone https://a3nm.net/git/kesterel2lustre/
Log | Files | Refs | README

alwayssuspend.strl (178B)


      1 module alwayssuspend:
      2 input S;
      3 output T1, Ta, Tb, Tc;
      4 loop emit T1; pause end || suspend
      5     loop
      6       emit Ta; pause; emit Tb; pause; emit Tc; pause
      7     end when T1
      8 end module