參考資訊:
https://github.com/YosysHQ/apicula/tree/master/examples
https://github.com/YosysHQ/apicula/wiki/Nextpnr%E2%80%90Himbaechel-Gowin
main.v
module main (
input btn,
output reg led
);
initial begin
led = 0;
end
always @(posedge btn) begin
led <= ~led;
end
endmodule
main.cst
IO_LOC "led" 15; IO_LOC "btn" 87;
完成
