Added 1-bit NOR

This commit is contained in:
WilliamMiceli
2019-02-15 16:05:07 -05:00
parent 68bb7a87e8
commit 10e9e0b359

View File

@@ -213,6 +213,15 @@ module mux_16_1(
endmodule
module nor_1bit(
input wire A,
input wire B,
output wire C);
assign C = A |~ B;
endmodule
module not_1bit(
input wire A,
output wire B);