vault backup: 2025-01-17 15:51:27

This commit is contained in:
arc 2025-01-17 15:51:27 -07:00
parent 64764837b3
commit 77ec466cd0

View File

@ -21,5 +21,12 @@
```verilog ```verilog
module example1(x1, x2, s, f); module example1(x1, x2, s, f);
input x1, x2, s; input x1, x2, s;
output f;
not(k, s);
and(g, k, x1);
and(h, s, x2);
or(f, g, h);
endmodule
``` ```