10 lines
105 B
Coq
10 lines
105 B
Coq
10 months ago
|
module led (
|
||
|
input wire key,
|
||
|
output reg led
|
||
|
);
|
||
|
|
||
|
always @(*) begin
|
||
|
led = !key;
|
||
|
end
|
||
|
|
||
|
endmodule
|