Here are the MSP430FRxx training manuals and a lot of technical documents to download, along with the TI classroom teaching videos, I hope it can help you! :pleased:Document download: [color=#336699][
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