Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module example;
  2.  
  3.     reg a, b, c;
  4.  
  5.     initial begin
  6.         a = 0;    // Line 1
  7.         b = 1;    // Line 2
  8.         if( a )
  9.             c = b;  // Line 3
  10.         else
  11.             c = ~b; // Line 4
  12.     end
  13.  
  14. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement