2021年7月3日 星期六

HDLBits/Building Larger Circuits/4-bit shift register and down counter(Exams/review2015 shiftcount)

 HDLBits/Building Larger Circuits/4-bit shift register and down counter(Exams/review2015 shiftcount)

This is the first component in a series of five exercises that builds a complex counter out of several smaller circuits. See the final exercise for the overall design.

Build a four-bit shift register that also acts as a down counter. Data is shifted in most-significant-bit first when shift_ena is 1. The number currently in the shift register is decremented when count_ena is 1. Since the full system doesn't ever use shift_ena and count_ena together, it does not matter what your circuit does if both control inputs are 1 (This mainly means that it doesn't matter which case gets higher priority).


module top_module (
    input clk,
    input shift_ena,
    input count_ena,
    input data,
    output [3:0] q);


    always @(posedge clk) begin
        if (shift_ena)
                q={q[2:0],data};
        else if (count_ena)
                q=q - 1'b1;   //down count
        else
            q=q;
         
    end
endmodule





沒有留言:

張貼留言

Node-Red --> MQTT --> Fuxa 開源碼網頁式圖控平台

Node-Red --> MQTT --> Fuxa      FUXA(一個開源的 Web HMI / SCADA 自動化監控軟體)的專案設定檔 。 這份設定檔完整定義了 HMI 監控畫面的 後端通訊(MQTT 連線、點位標籤) 與 前端網頁圖形介面(SVG 畫布...