New Hardware Git

This commit is contained in:
e2hang
2025-12-31 19:35:06 +08:00
commit aca5a8aab8
621 changed files with 254727 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/*
module test0(
input a;
input b;
output c;
);
endmodule
*/
module and_gate (
input a, // 输入a
input b, // 输入b
output y // 输出y = a & b
);
assign y = a & b; // 与操作
endmodule