http://www.ramtron-online.cn/user109685/blog/09-04/169227_6912c.htmlThis guy made it, but some people say that it is not possible without an LCD controller? ?...
module serial(clk,a,q);input clk;output a,q;reg a,q;always @(posedge clk)begina=~q;q=~q;endendmoduleCan you guys help me take a look at my program? It is the one above.After I type add wave -hex * in ...