Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-02-28 23:53:53 +01:00

12 lines
180 B
Verilog

module not_gate(y, a);
input a;
output y;
always @ (a)begin
if(a==1'b1)begin
y=0'b0;
end
else
y=1'b1;
end
endmodule