build: add nvboard support to led light

This commit is contained in:
xinyangli 2024-01-01 14:41:31 +08:00
parent 8e861a43fb
commit 38818f6f66
5 changed files with 108 additions and 28 deletions

View file

@ -1,7 +1,6 @@
module top(
input a,
input b,
output f
input [1:0] sw,
output ledr
);
assign f = a ^ b;
assign ledr = sw[1] ^ sw[0];
endmodule