Extracted text: 3.36 Draw the logic diagram of the digital circuit specified by the following Verilog description: (a) module Circuit_A (A, B, C, D, F); input output wire А, В, С, D; F; W, x, y, z, a, d; (х, В, С, d); (y, a ,C); (w, z ,B); (z, y, A); (F, x, w); (а, А); (d, D); or and and and or not not endmodule (b) module Circuit_B (F1, F2, F3, A0, A1, B0, B1); F1, F2, F3; АО, А1, ВО, В1; (F1, F2, F3); (F2, w1, w2, w3); (F3, w4, w5); (w1, w6, B1); (w2, w6, w7, B0); (w3, w7, B0, B1); (w6, A1); (w7, A0); (w4, A1, B1); (w5, A0, BO); output input nor or and and or and not not xor xnor endmodule (c) module Circuit_C (y1, y2, y3, a, b); output y1, y2, y3; input a, b; assign y1 = a || b; and (y2, a, b); assign y3 = a && b; endmodule