From 11508800cfaefc1c25a793760bf10d3fd997af80 Mon Sep 17 00:00:00 2001 From: justanothercatgirl Date: Wed, 14 May 2025 19:16:38 +0300 Subject: Initial and probably final commit --- 1-a.v | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 1-a.v (limited to '1-a.v') diff --git a/1-a.v b/1-a.v new file mode 100644 index 0000000..15e3c7c --- /dev/null +++ b/1-a.v @@ -0,0 +1,5 @@ +module m_a(input x1, x2, x3, output z1, z2); + assign z1 = (~x1 & ((x2 | x3) & (~x2 | ~x3))) | (x1 & (~x2 | x3)); + assign z2 = (~x1 & x2 & x3) | (x1 & (x2 | x3)); +endmodule + -- cgit v1.2.3-70-g09d2