You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
183 B

  1. template X() {
  2. signal input i;
  3. signal input j;
  4. signal output out;
  5. if (i == 0) {
  6. out <-- i;
  7. }
  8. else {
  9. out <-- j;
  10. }
  11. }
  12. component main = X();