Advertisement
Guest User

Untitled

a guest
May 14th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module PamentaSobaL(MOTION,LUMIN,LIGHT);
  2. input MOTION,LUMIN;
  3. output LIGHT;
  4. wire Z1;
  5. not(Z1,LUMIN);
  6. and(LIGHT,MOTION,Z1);
  7. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement