Code16 Inter and Intra assignment Delay.v - EDA Playground
Warning! This exercise has been opened in another tab; autosave has been disabled. Close this tab or refresh to reactivate.

 Languages & Libraries

 Tools & Simulators

 Examples

204


26
 
1
module tb();
2
 
3
reg a,b;
4
  
5
///Inter assg delay
6
  
7
  /* So when you use delay on LHS, so they are termed as an inter assignment delay.*/
8
  
9
  initial begin
10
   #5 a <= 1'b1; 
11
  end
12
 
13
///Intra assg delay
14
  
15
  /* So when you use delay on RHS, so they are termed as an intera assignment delay.*/
16
17
  initial begin
18
  b <= #10 a;
19
  end
20
  
21
  initial begin
22
    $monitor("Value of a: %0b and b : %0b at time : %0t",a,b,$time);
23
  end
24
 
25
endmodule
26
xxxxxxxxxx
1
 
1
2
3
4
206 views and 0 likes     
A short description will be helpful for you to remember your playground's details
 
100:0