2012年10月17日 星期三
//8 LED 跑馬燈 (1-1)
//8 LED 跑馬燈
/*
LEDR[0] PIN_AE23
LEDR[1] PIN_AF23
LEDR[2] PIN_AB21
LEDR[3] PIN_AC22
LEDR[4] PIN_AD22
LEDR[5] PIN_AD23
LEDR[6] PIN_AD21
LEDR[7] PIN_AC21
CLOCK_50 PIN_N2
*/
module Flash_8LED2 (LED,CLK);
output[7:0] LED;
input CLK; //50MHZ
reg [7:0] LED;
reg [24:0] counter;
reg [4:0] i;
reg [3:0] j;
initial
j=4'd7;
always@(posedge CLK)
begin
counter<=counter+1;
if(counter==25'd25_000_000) //if counter=25_000_000
begin
if(i<=5'd8) //if i<=8 then shift Left , and reset counter
begin
LED<=LED<<1;
counter<=0;
i<=i+1;
end
else if(i>5'd8&&i<5'd16) //if 9-15 shift Right ,and reset counter
begin
j<=j-1;
LED<=LED+2**(j);
counter<=0;
i<=i+1;
end
else if(i==5'd16) //if i=16 ,reset all parameter
begin
LED<=LED+1;
i<=0;
j<=4'd7;
counter<=0;
end
end
end
endmodule
訂閱:
張貼留言 (Atom)
WOKWI DHT22 & LED , Node-Red + SQLite database
WOKWI DHT22 & LED , Node-Red + SQLite database Node-Red程式 [{"id":"6f0240353e534bbd","type":"comment&...
-
python pip 不是内部或外部命令 -- 解決方法 要安裝 Pyqt5 1. 首先,開啟命令提示字元。 2. 輸入 pip3 install pyqt5 好像不能執行 ! ! 錯誤顯示 : ‘ pip3 ’ 不是內部或外部命令、可執行的程式或批...
-
課程講義 下載 11/20 1) PPT 下載 + 程式下載 http://www.mediafire.com/file/cru4py7e8pptfda/106%E5%8B%A4%E7%9B%8A2-1.rar 11/27 2) PPT 下載...
-
• 認 識 PreFix、InFix、PostFix PreFix(前序式):* + 1 2 + 3 4 InFix(中序式): (1+2)*(3+4) PostFix(後序式):1 2 + 3 4 + * 後 序式的運算 例如: 運算時由 後序式的...
沒有留言:
張貼留言