下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、SystemVerilog在Verilog語言基礎(chǔ)上擴(kuò)展了“接口”(interface)結(jié)構(gòu),接口給模型提供了一種新的方式,通過使用接口可以簡化大型復(fù)雜設(shè)計(jì)的建模和驗(yàn)證。,接口聲明 接口與模塊端口之間的連接 接口與模塊的區(qū)別 接口的端口及其方向 接口中的任務(wù)與函數(shù) 接口方法的使用 接口中的過程塊 參數(shù)化的接口,第10章 接口,10.1 接口的概念,接口反映的是模塊與模塊之間的互連,對Verilog來說,主要通過模塊的端口表現(xiàn)。,10.1 接口的概念,module top (input wire clock, resetn, teset_mode); wire 15 : 0 data, addr
2、ess, program_addr, jump_addr; wire 7 : 0 instr, next_instr; wire 3 : 0 slave_instr; wire slave_req, slave_rdy; wire bus_req, bus_grant; wire mem_read, mem_write; write data_rdy; processor proc1 ( /main_bus ports .data(data), .address(address), .slave_instr(slave_instr), .slave_req(slave_req), .bus_g
3、rant(bus_grant), .mem_read(mem_read), .mem_write(mem_write), .bus_req(bus_req), .slave_rdy(slave_rdy), /other ports .jump_addr(jump_addr), .instr(instr), .clock(clock), .resetn(resetn), .test_mode(test_mode);,10.1 接口的概念,slave slave1 ( /main_bus ports .data(data), .address(address), .bus_req(bus_req)
4、, .slave_ready(slave_ready), .mem_read(mem_read), .mem_write(mem_write), .slave_instr(slave_instr), .slave_req(slave_req), .bus_grant(bus_grant), .data_rdy(data_rdy), / other ports .clock(clock), .resetn(resetn); dual_port_ram ram ( / main_bus ports .data(data), .data_rdy(data_rdy), .address(address
5、), .mem_read(mem_read), .mem_write(mem_write), / other ports .program_addr(program_addr), .data_b(next_instr);,10.1 接口的概念,test_generator test_gen( / main_bus ports .data(data), .address(address), .mem_read(mem_read), .mem_write(mem_write), / other ports .clock(clock), .resetn(resetn), .test_mode(tes
6、t_mode); instruction_reg ir ( .program_addr(program_addr), .instr(instr), .jump_addr(jump_addr), .next_instr(next_instr), .clock(clock), .resetn(resetn); endmodule,10.1 接口的概念,module processor ( / main_bus ports inout wire 15:0 data, output reg 15:0 address, output reg 3:0 slave_instr, output reg sla
7、ve_req, output reg bus_grant, output wire mem_read, output wire mem_write, input wire bus_req, input wire slave_rdy, / other ports output reg 15:0 jump_addr, input wire 7:0 instr, input wire clock, input wire resetn, input wire test_mode); . / module functionality code endmodule,module slave ( / mai
8、n_bus ports inout wire 15:0 data, inout wire 15:0 address, output reg bus_req, output reg slave_rdy, output wire mem_read, output wire mem_write, input wire 3:0 slave_instr, input wire slave_req, input wire bus_grant, input wire data_rdy, / other ports input wire clock, input wire resetn); . / modul
9、e functionality code endmodule,10.1 接口的概念,module dual_port_ram ( / main_bus ports inout wire 15:0 data, output wire data_rdy, input wire 15:0 address, input tri0 mem_read, input tri0 mem_write, / other ports input wire 15:0 program_addr, output reg 7:0 data_b); . / module functionality code endmodul
10、e,module test_generator ( / main_bus ports output wire 15:0 data, output reg 15:0 address, output reg mem_read, output reg mem_write, / other ports input wire clock, input wire resetn, input wire test_mode); . / module functionality code endmodule,10.1 接口的概念,module instruction_reg ( output reg 15:0
11、program_addr, output reg 7:0 instr, input wire 15:0 jump_addr, input wire 7:0 next_instr, input wire clock, input wire resetn); . / module functionality code endmodule,10.1.1 Verilog模塊端口的缺點(diǎn),Verilog模塊的端口提供了一種描述設(shè)計(jì)中模塊之間連接關(guān)系的方式,這種方式直觀明了,但在大型復(fù)雜設(shè)計(jì)中,有很多缺點(diǎn): 在多個(gè)模塊中必須重復(fù)聲明端口 在不同模塊中有聲明不匹配的風(fēng)險(xiǎn) 設(shè)計(jì)規(guī)范中的一個(gè)改動(dòng)需要修改多個(gè)模塊
12、在多個(gè)模塊中通信協(xié)議也必須重復(fù) 例如有三個(gè)模塊對一個(gè)共享存儲(chǔ)器進(jìn)行讀寫操作,那么在這三個(gè)模塊中,讀寫操作的控制邏輯必須重復(fù)描述 限制了抽象的自頂向下的設(shè)計(jì) 用模塊端口連接時(shí),設(shè)計(jì)的具體互連必須在設(shè)計(jì)周期的早期確定,而不能在一個(gè)不需要考慮設(shè)計(jì)細(xì)節(jié)的抽象層面上描述。,10.1.2 SystemVerilog接口優(yōu)勢,SystemVerilog增加了新的端口類型接口,接口允許許多信號(hào)合成一組由一個(gè)端口表示,只需在一個(gè)地方對組成接口的信號(hào)進(jìn)行聲明,使用這些信號(hào)的模塊只需一個(gè)接口類型的端口。 interface main_bus; wire 15:0 data; wire 15:0 address; l
13、ogic 7:0 slave_instr; logic slave_req; logic bus_grant; logic bus_req; logic slave_rdy; logic data_rdy; logic mem_read; logic mem_write; endinterface,10.1.2 SystemVerilog接口優(yōu)勢,module top (input logic clock, resetn, test_mode); logic 15:0 program_addr, jump_addr; logic 7:0 instr, next_instr; main_bus
14、bus ( ); / instance of an interface / (instance name is bus) processor proc1 ( / main_bus ports .bus(bus), / interface connection / other ports .jump_addr (jump_addr), .instr (instr), .clock(clock), .resetn(resetn), .test_mode(test_mode);,10.1.2 SystemVerilog接口優(yōu)勢,slave slave1 ( / main_bus ports .bus
15、(bus), / interface connection / other ports .clock(clock), .resetn(resetn); dual_port_ram ram ( / main_bus ports .bus(bus), / interface connection / other ports .program_addr (program_addr), .data_b(next_instr);,10.1.2 SystemVerilog接口優(yōu)勢,test_generator test_gen( / main_bus ports .bus(bus), / interfac
16、e connection / other ports .clock(clock), .resetn(resetn), .test_mode(test_mode); instruction_reg ir ( .program_addr (program_addr), .instr(instr), .jump_addr(jump_addr), .next_instr(next_instr), .clock(clock), .resetn(resetn); endmodule,10.1.2 SystemVerilog接口優(yōu)勢,module processor ( / main_bus interfa
17、ce port main_bus bus, / interface port / other ports output logic 15:0 jump_addr, input logic 7:0 instr, input logic clock, input logic resetn, input logic test_mode); . / module functionality code endmodule module slave ( / main_bus interface port main_bus bus, / interface port / other ports input
18、logic clock, input logic resetn); . / module functionality code endmodule,module dual_port_ram ( / main_bus interface port main_bus bus, / interface port / other ports input logic 15:0 program_addr, output logic 7:0 data_b); . / module functionality code endmodule module test_generator ( / main_bus interface port main_bus bus, / interface port / other ports input logic c
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025版酒店會(huì)議接待及會(huì)后商務(wù)拓展活動(dòng)合同3篇
- 2025年度煙酒行業(yè)產(chǎn)品研發(fā)合作合同明細(xì)3篇
- 算法類課程設(shè)計(jì)報(bào)告
- 2025版智慧城市建設(shè)項(xiàng)目監(jiān)理專業(yè)承包合同范本3篇
- 2025年度城市道路橋梁伸縮縫安裝與維護(hù)施工合同3篇
- 美容護(hù)膚初步課程設(shè)計(jì)
- 二零二五年度VIP會(huì)員專屬旅行定制服務(wù)協(xié)議3篇
- 2024年知名品牌服裝設(shè)計(jì)定制合同
- 2025年高純銦及氧化銦合作協(xié)議書
- 2025版金融理財(cái)顧問服務(wù)合同范本協(xié)議書
- 呆滯品管理制度范本(3篇)
- 海底撈-新員工培訓(xùn)
- Cinema 4D從入門到精通PPT完整版全套教學(xué)課件
- T-SHSPTA 002-2023 藥品上市許可持有人委托銷售管理規(guī)范
- 我國雙語教育發(fā)展現(xiàn)狀以及建議
- 放射治療技術(shù)常用放射治療設(shè)備課件
- 保研推免個(gè)人簡歷
- 《計(jì)算機(jī)組成原理》武漢大學(xué)2023級(jí)期末考試試題答案
- 廣東廣州白云區(qū)2021學(xué)年第二學(xué)期期末學(xué)生學(xué)業(yè)質(zhì)量診斷調(diào)研六年級(jí)語文(含答案)
- 公安院校公安專業(yè)招生體檢表
- 2023-2024學(xué)年四川省瀘州市小學(xué)數(shù)學(xué)四年級(jí)上冊期末評(píng)估測試題
評(píng)論
0/150
提交評(píng)論