mirror of https://github.com/YosysHQ/icestorm.git
11 lines
108 B
Coq
11 lines
108 B
Coq
|
|
module top (
|
||
|
|
input btn,
|
||
|
|
output LED0,
|
||
|
|
output LED1,
|
||
|
|
);
|
||
|
|
|
||
|
|
assign LED0 = !btn;
|
||
|
|
assign LED1 = btn;
|
||
|
|
|
||
|
|
endmodule
|