Guest User

Untitled

a guest
Feb 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. a1 = 4'b 1001;
  2. a2 = 4'b 1000;
  3. a3 = 4'b 1111;
  4.  
  5. fulladder fa (a1[3] , a2[3] , a2[4] )
  6.  
  7. module full adder (a,b,c, carry , sum);
  8. body -----
  9. endmodule
  10.  
  11. module fulladder2 (a , sum, carry)
  12. input [2:0] a;
  13. output sum;
  14. output carry;
  15. body-----
  16. endmoduole
Add Comment
Please, Sign In to add comment