module XOR8 (Z,A,B,C,D,E,F,G,H);

  output  Z;
  input   A;
  input   B;
  input   C;
  input   D;
  input   E;
  input   F;
  input   G;
  input   H;

  wire    Z,A,B,C,D,E,F,G,H ;
  xor x0 (Z,A,B,C,D,E,F,G,H);

endmodule
