公告版位

沒有痛苦 就沒有收穫
若內容對你有幫助,可以留言讓我知道哦~
有問題想要諮詢可以請至這裡連絡我哦 =>不會就放這邊

 


目前分類:Verilog (6)

瀏覽方式: 標題列表 簡短摘要

Blocking & Non Blocking

1.        Blocking的語法 =  //循序式的方式執行程式

Exp :

JL8051 發表在 痞客邦 留言(0) 人氣()

20210205更新

1.台灣販賣

微控制器科技】Intel Altera Cyclone IV EP4CE15 FPGA 開發板 /核心板 (去年才賣五百多 現在卻漲到一千塊@@)

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

https://hdlbits.01xz.net/wiki/Zero


JL8051 發表在 痞客邦 留言(0) 人氣()

module led_test
(
   input                clk,           // 系統 50 Mhz 時鐘
    input                key,           // 按鈕 1
   output [3:0]         led            // 板子上有 4 顆 LED,宣告為輸出
);  

     reg [3:0] count;

     reg [31:0] timer;

    always@(posedge clk)
    begin    

        if(key == 1'b0) // 按下,就累加一
            timer <= timer + 24'd1;
        else // 放開
            timer <= 31'd0;


        // 當累加到 0.01 秒,LED 計數器才加一
        if(timer == 31'd500_000) //  50_000_000 = 1秒,500_000 = 0.01 秒
            count <= count + 4'b0001;

    end

     assign led = ~ count; // 將 count 綁定到 LED 輸出,並且是相反 (NOT) 輸出

endmodule

JL8051 發表在 痞客邦 留言(0) 人氣()

Error (114016): Out of memory in module quartus_map.exe (4904 megabytes used)

記憶體不足

 

JL8051 發表在 痞客邦 留言(0) 人氣()

Verilog for迴圈範例1

reg[31:0]matrix[8:0];
always@(posedge clk)begin
  if(reset)
    for(idx=0; idx <9; idx = idx +1)begin
      matrix[idx] <= 0;
    end
end

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()