1. 程式人生 > >jchdl - RTL例項 - AndAnd

jchdl - RTL例項 - AndAnd

https://mp.weixin.qq.com/s/JhUB3M1WhjAyUrN1HPIPTA

  AndAnd是三輸入與門模組,輸出為相與的結果。   參考連結 https://github.com/wjcdx/jchdl/blob/master/src/org/jchdl/model/rtl/example/AndAnd.java   1.建立AndAnd.java, 並生成構造方法和logic()方法   2. 根據邏輯原理,新增輸入輸出介面 輸入輸出線作為類成員存在。使用註解標明是input port還是output port。
    3. 在構造方法中搜集輸入輸出線並呼叫construct()方法 首先呼叫父類即Module類的構造方法,以構建模組hierarchy。 然後逐個把輸入輸出引數與input/output port對應上。 然後呼叫construct()方法構造模組(呼叫一次logic()方法,蒐集模組的assign/always程式碼塊)。   4. 在logic()方法中建立assign/always程式碼塊,以及子模組 這裡包含兩個And子模組。    
5. 建立inst靜態方法方便後續使用     6. 建立main方法執行驗證   執行結果為:   7. 生成Verilog 生成定製化模組名:   呼叫toVerilog()方法生成Verilog實現。   執行結果如下: