5 lines
94 B
Coq
5 lines
94 B
Coq
|
module part1 (SW,LEDR);
|
||
|
input [9:0]SW;
|
||
|
output [9:0]LEDR;
|
||
|
assign LEDR=SW;
|
||
|
endmodule
|