R2.v 168 Bytes
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12
module R2 (/*AUTOARG*/
   // Outputs
   po,
   // Inputs
   pi
   ) ;
   output [15:0] po;
   input  [15:0] pi;

   assign po = {pi[7:0],pi[15:8]};
   
endmodule // R2