Part I and Part
I You are to design a circuit that scrolls the characters "12345"in ticker-tape fashion on the five displays.The numbers move from right to left in intervals of about one second.
Please submit an experimental report including Verilog code,RTL netlist,the state transition diagram, timing simulation waveform and annotations,hardware testing results.
顶层代码:
module Csc(CLK,RST,Q1,Q2,Q3,Q4,Q5,K1,K2);
input CLK,RST;
input K1,K2;
output[7:0]Q1,Q2,Q3,Q4,Q5;
wire[7:0]link1,link2;
wire link3,link4;
TC TC(CLK,RST,link4,K1,K2);
Timer T(CLK,RST,link4,link3);
Rs R(RST,link3,link1,link2,Q1,Q2,Q3,Q4,Q5);
Srcolling S(link3,RST,link2,link1);
Endmodul