formatter test

This commit is contained in:
k0rrluna 2024-12-02 02:42:36 +03:00
parent 1cb96c9f9a
commit f0551ce34f
3 changed files with 45 additions and 43 deletions

View File

@ -1,5 +1,7 @@
module notGate (input A,
output B);
module notGate (
input A,
output B
);
nand nand1 (B, A, A);
endmodule