Home.Verilog.Digital Design.Digital Basics.Python.RF Basics.
Previous.Next.
Custom Search

Feedback ? Send it to admin@fullchipdesign.com or join me at fullchip@gmail.com

Legal Disclaimer

Chip Designing for ASIC/ FPGA Design engineers and Students
FULLCHIPDESIGN
Digital-logic Design...  Dream for many students… start learning front-end…

Legal Disclaimer

PICS
Verilog Tutorial.
Register Transfer Level & Microoperations
Register transfer is related to moving the contents of one register to another register for specific arithmetic operations.

For example: Moving contents of register R2 to register R1. This kind of transfers generally occurs when a control condition is triggered.   
 If (R2 greater 10) then
              R1 <– R2
Register transfer level (RTL) is a specific term used by engineers to implement hardware  specifications using a languages such as Verilog or VHDL.

Registers are group of flip-flops. Each flop within a register can store a digital value 1 or 0. The maximum number of values a register can hold is defined by the number of bits. An N bits register has N flip-flops and can store N binary values.    

For Example a 4 bit register R1 can hold any
Value between ‘b0000 to ‘b1111. (‘b is generally used to define binary values).
Microoperations are the arithmetic operations executed on the contents of registers. Some examples are increment, decrement, right shift, left shift etc.  

So from the discussion above, for any hardware code follow the requirements below:-
1. Declare registers to load and store binary data.
2. Define a list of microoperations.
3. Declare control conditions for executing microoperations.

Microoperations can be categorized further into following groups.
1. Aritmetic Microoperations.
2. Logic Microoperations.
3. Shift Microoperations.

Once the logic is coded, it needs to be simulated and synthesized to verify the correct implementation.

Refer following resources on FCD to understand RTL implementations.

1. RTL coding guidelines.
2. Verilog RTL example section.
3. Digital basics section.
Introduction:- A digital hardware is a system of millions of logic blocks such as gates, flip-flops, memories etc.
To implement any component inside a digital system requires basics understanding of building blocks.

So to understand the hardware implementations requires.
1. Good understanding of digital gates and flip-flops.
2. Good understanding for Register Transfer Level (RTL).
RTL is discussed in this section.