Advertisement
Guest User

Untitled

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