Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Differences between blocking and Non-blocking statements in
Verilog?

Answer Posted / amit malik

cp mistake in 1st one.
-----------------------------------

Blocking statements are executed on after another
represented by '='

Ex. lets take two variables
reg A:0;
reg B:1;
initial
begin
A = B;
B = A;
end

Ans
A = 1
B = 1

Non Blocking
instructions are executed concurrently
represented by '<='

Ex. lets take two variables
reg A:0;
reg B:1;
initial
begin
A <= B;
B <= A;
end

Ans
A = 1
B = 0

Is This Answer Correct ?    66 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Draw a CMOS Inverter. Explain its transfer characteristics

1231


Explain the Charge Sharing problem while sampling data from a Bus?

4780


What is Charge Sharing? Explain the Charge Sharing problem while sampling data from a Bus

1318


Why does the present vlsi circuits use mosfets instead of bjts?

1370


Write a VLSI program that implements a toll booth controller?

4025


why is the number of gate inputs to CMOS gates usually limited to four?

1398


Explain the working of 4-bit Up/down Counter?

4489


What is the main function of metastability in vsdl?

1115


Explain what is Verilog?

1156


Draw a 6-T SRAM Cell and explain the Read and Write operations

1337


Calculate rise delay of a 3-input NAND gate driving a 3-input NOR gate through a 6mm long and 0.45m wide metal wire with sheet resistance R = 0.065 / and Cpermicron= 0.25 fF/m. The resistance and capacitance of the unit NMOS are 6.5k and 2.5fF. Use a 3 segment -model for the wire. Consider PMOS and NMOS size of reference inverter as 2 and 1 respectively. Use appropriate sizing for the NAND and NOR gate.

3926


Give the cross-sectional diagram of the cmos.

1040


If an/ap = 0.5, an/ap = 1, an/ap = 3, for 3 inverters draw the transfer characteristics?

2557


Implement a function with both ratioes and domino logic and merits and demerits of each logic?

1239


what is multiplexer?

1223