#! /bin/sh . ../../testenv.sh analyze test.vhd elab_simulate test clean echo "Test successful" >
1 2 3 4 5 6 7 8 9
module wire_example( a, b, y); input a, b; output y; wire a, b, y; assign y = a & b; endmodule