Advertisement
panther5482

demo.v

Feb 16th, 2024 (edited)
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. module demo(
  2. (* side=LEFT, colors=WHITE *)
  3. input en,
  4. (* side=RIGHT, colors={WHITE,ORANGE,LIGHTGRAY,LIGHTBLUE} *)
  5. output [3:0] lamps
  6. );
  7.  
  8. (* analog *)
  9. reg random;
  10.  
  11. RandomizerAnalog ar (
  12. .Min(0),
  13. .Max(4),
  14. .Q(random)
  15. );
  16.  
  17. DeMux16Analog d16 (
  18. .I(1),
  19. .S(random),
  20. .O(lamps)
  21. );
  22.  
  23. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement