Advertisement
Guest User

Untitled

a guest
Mar 4th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module Zadanie_1_sumator_1_bit_assign_board(
  2.     input [2:0] SW,
  3.     output [1:0] LEDR);
  4.    
  5.     /*
  6.     Ponizej nastepuje wywołanie odpowiedniego pliku z modułu wcześniejszego
  7.     na podstawie fizycznych komponentów (przyciski i 2 diody).
  8.     */
  9.     Zadanie_1_sumator_1_bit_assign ex1(SW[0], SW[1], SW[2], LEDR[0], LEDR[1]);
  10.    
  11. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement