A little bit of verilog
module blinky(CLK50, PW39, NW39);
input CLK50;
output PW39;
output NW39;
reg [24:0] count;
always @(posedge CLK50) begin
count <= count + 1;
end
assign PW39 = count[24];
assign NW39 = count[24:13] < count[12:1];
endmoduleThe SymbiFlow toolchain and a lot of serial interface debugging and the FPGA finnaly shows some life:

flow
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.