document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. module inicial ( giro, entrada, saida, metais, ledVerde, ledVermelho, display, clock );
  2.     input giro, entrada, saida, metais, clock;
  3.     output [1:0] ledVerde, ledVermelho;
  4.     output [6:0] display;
  5.  
  6.     reg [3:0] tmp;
  7.     [...]
  8.             tmp = { giro, entrada, saida, metais }; // Equivalente as linhas 9 à 12, só é uma maneira mais simples de escrever
  9.             /*tmp[3] = giro;
  10.             tmp[2] = entrada;
  11.             tmp[1] = saida;
  12.             tmp[0] = metais;*/
  13.  
  14.     [...]
  15. endmodule
');