Verification


Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home1/ssolutiononboard/public_html/wp-includes/kses.php on line 1745
theSiliconyard 2

Queue in System Verilog

  A SystemVerilog queue is a First In First Out scheme which can have a variable size to store elements of the same data type. It is similar to a one-dimensional unpacked array that grows and shrinks automatically. They can also be manipulated by indexing, concatenation, and slicing operators.

theSiliconyard 1

TLM in UVM- Introduction

Transaction Level Modeling is a modeling style for building highly abstract models of components and systems. In this scheme, data is represented as transactions (class objects that contain random, protocol-specific information) that flow in and out of different components via special ports called TLM interfaces.

Untitled design 17

Dynamic Array in System Verilog

A dynamic array is one dimension of an unpacked array whose size can be set or changed at run-time. Dynamic array is Declared using an empty word subscript [ ]. The space for a dynamic array doesn’t exist until the array is explicitly created at run-time, space is allocated when new[number] is called. the number …

Dynamic Array in System Verilog Read More »

theSiliconyard

Queue and Semaphore in System Verilog

A mailbox is a built-in class around a queue that uses semaphores to control access to the ends of a queue. A mailbox only has FIFO element ordering whereas you can access the head, tail, or middle elements of a queue. … However, if there is more than one thread, a mailbox is a convenient class to use.

Untitled design 20

Mailbox

Mailboxes are a message-based process synchronization and communication mechanism provided in SV. It allows messages to be exchanged between processes. Conceptually, mailboxes behave like real mailboxes with delivery and retrieval of messages

Untitled design 18

Typedef and Associative array in System Verilog

An associative array is one of the aggregate data types available in the system Verilog. … When the size of the collection is unknown or the data space is sparse, an associative array is used, which does not have any storage allocated until it is used. That means, it is dynamically allocated but has non-contiguous elements.

Untitled design 19

Data Types and Randomization in System Verilog

Randomization is the process of making something random; SystemVerilog randomization is the process of generating random values to a variable. Verilog has a $random method for generating the random integer values.