Create a 3-byte queue



module tb;
  //Create a 3-byte queue and initialize it with 2, −1, and 127
//	Print out the sum of the queue in the decimal radix
  
  byte q [$] = '{2,-1,127};
  int sum;
  

 initial begin
   for (int i=0;i<$size(q);i++) sum = sum + q[i];
   $display ("sum is %d",sum);
 end
  
  
endmodule