資料介紹
Chapter 1: Introduction to SystemVerilog
Chapter 2: SystemVerilog Declaration Spaces
Example 2-1: A package definition ...9
Example 2-2: Explicit package references using the :: scope resolution operator .10
Example 2-3: Importing specific package items into a module 11
Example 2-4: Using a package wildcard import 13
Example 2-5: External declarations in the compilation-unit scope (not synthesizable) 15
Example 2-6: Package with conditional compilation (file name: definitions.pkg) 21
Example 2-7: A design file that includes the conditionally-compiled package file 23
Example 2-8: A testbench file that includes the conditionally-compiled package file .23
Example 2-9: Mixed declarations of time units and precision (not synthesizable) 34
Chapter 3: SystemVerilog Literal Values and Built-in Data Types
Example 3-1: Relaxed usage of variables 53
Example 3-2: Illegal use of variables ..54
Example 3-3: Applying reset at simulation time zero with 2-state types 65
Chapter 4: SystemVerilog User-Defined and Enumerated Types
Example 4-1: Directly referencing typedef definitions from a package ..77
Example 4-2: Importing package typedef definitions into $unit ...78
Example 4-3: State machine modeled with Verilog ‘define and parameter constants 79
Example 4-4: State machine modeled with enumerated types .81
Example 4-5: Using special methods to iterate through enumerated type lists ..91
Example 4-6: Printing enumerated types by value and by name ...92
Chapter 5: SystemVerilog Arrays, Structures and Unions
Example 5-1: Using structures and unions ..112
Example 5-2: Using arrays of structures to model an instruction register ..129
Chapter 6: SystemVerilog Procedural Blocks, Tasks and Functions
Example 6-1: A state machine modeled with always procedural blocks 145
Example 6-2: A state machine modeled with always_comb procedural blocks ...147
Example 6-3: Latched input pulse using an always_latch procedural block 151
Chapter 7: SystemVerilog Procedural Statements
Example 7-1: Using SystemVerilog assignment operators 175
Example 7-2: Code snippet with unnamed nested begin...end blocks ...192
Example 7-3: Code snippet with named begin and named end blocks ..193
Chapter 8: Modeling Finite State Machines with SystemVerilog
Example 8-1: A finite state machine modeled with enumerated types (poor style) ..208
Example 8-2: Specifying one-hot encoding with enumerated types .210
Example 8-3: One-hot encoding with reversed case statement style .212
Example 8-4: Code snippet with illegal assignments to enumerated types 216
Chapter 9: SystemVerilog Design Hierarchy
Example 9-1: Nested module declarations ..228
Example 9-2: Hierarchy trees with nested modules 231
Example 9-3: Simple netlist using Verilog’s named port connections ..235
Example 9-4: Simple netlist using SystemVerilog’s .name port connections 239
Example 9-5: Simple netlist using SystemVerilog’s .* port connections .243
Example 9-6: Netlist using SystemVerilog’s .* port connections without aliases ..248
Example 9-7: Netlist using SystemVerilog’s .* connections along with net aliases .249
Example 9-8: Passing structures and arrays through module ports ...252
Example 9-9: Passing a reference to an array through a module ref port ...255
Example 9-10: Polymorphic adder using parameterized variable types ..261
Chapter 10: SystemVerilog Interfaces
Example 10-1: Verilog module interconnections for a simple design .264
Example 10-2: SystemVerilog module interconnections using interfaces ...270
Example 10-3: The interface definition for main_bus, with external inputs ..274
Example 10-4: Using interfaces with .* connections to simplify complex netlists ..275
Example 10-5: Referencing signals within an interface .280
Example 10-6: Selecting which modport to use at the module instance .283
Example 10-7: Selecting which modport to use at the module definition 284
Example 10-8: A simple design using an interface with modports .287
Example 10-9: Using modports to select alternate methods within an interface 291
Example 10-10:Exporting a function from a module through an interface modport ...294
Example 10-11:Exporting a function from a module into an interface 294
Example 10-12:Using parameters in an interface ...297
Chapter 11: A Complete Design Modeled with SystemVerilog
Example 11-1: Utopia ATM interface, modeled as a SystemVerilog interface .306
Example 11-2: Cell rewriting and forwarding configuration ...307
Example 11-3: ATM squat top-level module 309
Example 11-4: Utopia ATM receiver ..315
Example 11-5: Utopia ATM transmitter ..318
Example 11-6: UtopiaMethod interface for encapsulating test methods .321
Example 11-7: CPUMethod interface for encapsulating test methods 322
Example 11-8: Utopia ATM testbench 323
Chapter 12: Behavioral and Transaction Level Modeling
Example 12-1: Simple memory subsystem with read and write tasks 333
Example 12-2: Two memory subsystems connected by an interface ..335
Example 12-3: TLM model with bus arbitration using semaphores ...338
Example 12-4: Adapter modeled as a module ...341
Example 12-5: Simplified Intel Multibus with multiple masters and slaves 342
Example 12-6: Simple Multibus TLM example with master adapter as a module 343
Example 12-7: Simple Multibus TLM example with master adapter as an interface .348
Chapter 2: SystemVerilog Declaration Spaces
Example 2-1: A package definition ...9
Example 2-2: Explicit package references using the :: scope resolution operator .10
Example 2-3: Importing specific package items into a module 11
Example 2-4: Using a package wildcard import 13
Example 2-5: External declarations in the compilation-unit scope (not synthesizable) 15
Example 2-6: Package with conditional compilation (file name: definitions.pkg) 21
Example 2-7: A design file that includes the conditionally-compiled package file 23
Example 2-8: A testbench file that includes the conditionally-compiled package file .23
Example 2-9: Mixed declarations of time units and precision (not synthesizable) 34
Chapter 3: SystemVerilog Literal Values and Built-in Data Types
Example 3-1: Relaxed usage of variables 53
Example 3-2: Illegal use of variables ..54
Example 3-3: Applying reset at simulation time zero with 2-state types 65
Chapter 4: SystemVerilog User-Defined and Enumerated Types
Example 4-1: Directly referencing typedef definitions from a package ..77
Example 4-2: Importing package typedef definitions into $unit ...78
Example 4-3: State machine modeled with Verilog ‘define and parameter constants 79
Example 4-4: State machine modeled with enumerated types .81
Example 4-5: Using special methods to iterate through enumerated type lists ..91
Example 4-6: Printing enumerated types by value and by name ...92
Chapter 5: SystemVerilog Arrays, Structures and Unions
Example 5-1: Using structures and unions ..112
Example 5-2: Using arrays of structures to model an instruction register ..129
Chapter 6: SystemVerilog Procedural Blocks, Tasks and Functions
Example 6-1: A state machine modeled with always procedural blocks 145
Example 6-2: A state machine modeled with always_comb procedural blocks ...147
Example 6-3: Latched input pulse using an always_latch procedural block 151
Chapter 7: SystemVerilog Procedural Statements
Example 7-1: Using SystemVerilog assignment operators 175
Example 7-2: Code snippet with unnamed nested begin...end blocks ...192
Example 7-3: Code snippet with named begin and named end blocks ..193
Chapter 8: Modeling Finite State Machines with SystemVerilog
Example 8-1: A finite state machine modeled with enumerated types (poor style) ..208
Example 8-2: Specifying one-hot encoding with enumerated types .210
Example 8-3: One-hot encoding with reversed case statement style .212
Example 8-4: Code snippet with illegal assignments to enumerated types 216
Chapter 9: SystemVerilog Design Hierarchy
Example 9-1: Nested module declarations ..228
Example 9-2: Hierarchy trees with nested modules 231
Example 9-3: Simple netlist using Verilog’s named port connections ..235
Example 9-4: Simple netlist using SystemVerilog’s .name port connections 239
Example 9-5: Simple netlist using SystemVerilog’s .* port connections .243
Example 9-6: Netlist using SystemVerilog’s .* port connections without aliases ..248
Example 9-7: Netlist using SystemVerilog’s .* connections along with net aliases .249
Example 9-8: Passing structures and arrays through module ports ...252
Example 9-9: Passing a reference to an array through a module ref port ...255
Example 9-10: Polymorphic adder using parameterized variable types ..261
Chapter 10: SystemVerilog Interfaces
Example 10-1: Verilog module interconnections for a simple design .264
Example 10-2: SystemVerilog module interconnections using interfaces ...270
Example 10-3: The interface definition for main_bus, with external inputs ..274
Example 10-4: Using interfaces with .* connections to simplify complex netlists ..275
Example 10-5: Referencing signals within an interface .280
Example 10-6: Selecting which modport to use at the module instance .283
Example 10-7: Selecting which modport to use at the module definition 284
Example 10-8: A simple design using an interface with modports .287
Example 10-9: Using modports to select alternate methods within an interface 291
Example 10-10:Exporting a function from a module through an interface modport ...294
Example 10-11:Exporting a function from a module into an interface 294
Example 10-12:Using parameters in an interface ...297
Chapter 11: A Complete Design Modeled with SystemVerilog
Example 11-1: Utopia ATM interface, modeled as a SystemVerilog interface .306
Example 11-2: Cell rewriting and forwarding configuration ...307
Example 11-3: ATM squat top-level module 309
Example 11-4: Utopia ATM receiver ..315
Example 11-5: Utopia ATM transmitter ..318
Example 11-6: UtopiaMethod interface for encapsulating test methods .321
Example 11-7: CPUMethod interface for encapsulating test methods 322
Example 11-8: Utopia ATM testbench 323
Chapter 12: Behavioral and Transaction Level Modeling
Example 12-1: Simple memory subsystem with read and write tasks 333
Example 12-2: Two memory subsystems connected by an interface ..335
Example 12-3: TLM model with bus arbitration using semaphores ...338
Example 12-4: Adapter modeled as a module ...341
Example 12-5: Simplified Intel Multibus with multiple masters and slaves 342
Example 12-6: Simple Multibus TLM example with master adapter as a module 343
Example 12-7: Simple Multibus TLM example with master adapter as an interface .348
下載該資料的人也在下載
下載該資料的人還在閱讀
更多 >
- SystemVerilog3.1a語言參考手冊 2次下載
- IEEE SystemVerilog標準:統一的硬件設計規范和驗證語言 0次下載
- 利用Systemverilog+UVM搭建soc驗證環境 5次下載
- IC Mask Design電子版文件下載 0次下載
- SystemVerilog的正式驗證和混合驗證 24次下載
- SystemVerilog斷言及其應用 0次下載
- 基于SystemVerilog語言的驗證方法學介紹 52次下載
- 如何采用SystemVerilog來改善基于FPGA的ASI
- 基于事件結構的SystemVerilog指稱語義
- Synthesizable Finite State Mac
- SystemVerilog 3.1a Language Re
- SystemVerilog的斷言手冊
- SystemVerilog Assertion Handbo
- SystemVerilog 3.1a語言參考手冊
- ALLEGRO DESIGN WORKBENCH 0次下載
- 分享一些SystemVerilog的coding guideline 558次閱讀
- SystemVerilog在硬件設計部分有哪些優勢 925次閱讀
- SystemVerilog的隨機約束方法 1167次閱讀
- 如何實現全面的SystemVerilog語法覆蓋 484次閱讀
- SystemVerilog中的Semaphores 3053次閱讀
- SystemVerilog語言中的Upcasting和Downcasting概念解析 1239次閱讀
- SystemVerilog中的Shallow Copy 759次閱讀
- Systemverilog中的union 823次閱讀
- SystemVerilog中的struct 2213次閱讀
- SystemVerilog中的package 1085次閱讀
- SystemVerilog中可以嵌套的數據結構 1448次閱讀
- SystemVerilog中的操作方法 2473次閱讀
- SystemVerilog中$cast的應用 2559次閱讀
- Systemverilog event的示例 1382次閱讀
- SystemVerilog對硬件功能如何進行建模 1557次閱讀
下載排行
本周
- 1電子電路原理第七版PDF電子教材免費下載
- 0.00 MB | 1490次下載 | 免費
- 2單片機典型實例介紹
- 18.19 MB | 92次下載 | 1 積分
- 3S7-200PLC編程實例詳細資料
- 1.17 MB | 27次下載 | 1 積分
- 4筆記本電腦主板的元件識別和講解說明
- 4.28 MB | 18次下載 | 4 積分
- 5開關電源原理及各功能電路詳解
- 0.38 MB | 10次下載 | 免費
- 6基于AT89C2051/4051單片機編程器的實驗
- 0.11 MB | 4次下載 | 免費
- 7藍牙設備在嵌入式領域的廣泛應用
- 0.63 MB | 3次下載 | 免費
- 89天練會電子電路識圖
- 5.91 MB | 3次下載 | 免費
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 2PADS 9.0 2009最新版 -下載
- 0.00 MB | 66304次下載 | 免費
- 3protel99下載protel99軟件下載(中文版)
- 0.00 MB | 51209次下載 | 免費
- 4LabView 8.0 專業版下載 (3CD完整版)
- 0.00 MB | 51043次下載 | 免費
- 5555集成電路應用800例(新編版)
- 0.00 MB | 33562次下載 | 免費
- 6接口電路圖大全
- 未知 | 30320次下載 | 免費
- 7Multisim 10下載Multisim 10 中文版
- 0.00 MB | 28588次下載 | 免費
- 8開關電源設計實例指南
- 未知 | 21539次下載 | 免費
總榜
- 1matlab軟件下載入口
- 未知 | 935053次下載 | 免費
- 2protel99se軟件下載(可英文版轉中文版)
- 78.1 MB | 537791次下載 | 免費
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420026次下載 | 免費
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 5Altium DXP2002下載入口
- 未知 | 233045次下載 | 免費
- 6電路仿真軟件multisim 10.0免費下載
- 340992 | 191183次下載 | 免費
- 7十天學會AVR單片機與C語言視頻教程 下載
- 158M | 183277次下載 | 免費
- 8proe5.0野火版下載(中文版免費下載)
- 未知 | 138039次下載 | 免費
評論
查看更多